Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
- .woodpecker.yaml: image paths -> library/autojanet-{agent,dispatcher}
- .woodpecker.yaml: secret names RS_HARBOR_USER / RS_HARBOR_PASS (global)
- container/Dockerfile: restore COPY skills/, skills/ populated from opencode config
- skills/: 84 opencode skills bundled into image
- k8s/manifests: update image refs to library/
1.9 KiB
1.9 KiB
HTML Language Prompt Snippet
Key Concepts
- Semantic Elements:
<main>,<nav>,<header>,<footer>,<article>,<section>for meaningful structure - Document Structure:
<!DOCTYPE html>,<html>,<head>,<body>forming the page skeleton - Forms:
<form>,<input>,<select>,<textarea>for user data collection with validation attributes - Accessibility:
aria-*attributes,role,alttext, and semantic markup for screen readers - Meta Tags:
<meta>for viewport, charset, description, Open Graph, and SEO metadata - Script and Style Loading:
<script>,<link>,<style>for JavaScript and CSS inclusion - Data Attributes:
data-*custom attributes for storing element-specific data - Template Syntax: Framework-specific templating (
{{ }}for Jinja/Django,<%= %>for ERB) - Web Components:
<template>,<slot>, Custom Elements for encapsulated reusable components
Notable File Patterns
index.html— Application entry point or SPA shell*.html/*.htm— Static HTML pagestemplates/**/*.html— Server-side template files (Django, Jinja2, Go templates)public/index.html— SPA root document (React, Vue)*.ejs/*.hbs/*.pug— Templating engine files
Edge Patterns
- HTML files
depends_onJavaScript and CSS files they include via<script>and<link>tags - Template HTML files
depends_onthe server-side code that renders them - HTML entry points are
deploystargets for build systems and web servers - HTML files
relatedto the components or routes they render
Summary Style
"Single-page application shell with viewport meta, CSS reset, and React root mount point." "Server-rendered template with navigation, content area, and footer using Django template inheritance." "Static landing page with responsive layout, form, and third-party script integrations."