CLAUDE.md

Guidance for AI assistants working in this repository.

What this is

A Jekyll static site for OD Videos — the videography business of Ondřej Demuth (realitní / letecká / firemní / svatební video). The site is in Czech (lang: cs-CZ); all user-facing copy, section names, and form fields should stay in Czech. It is deployed to GitHub Pages at the custom domain odvideos.cz (CNAME).

There is no build tool / no npm — styling is Tailwind CSS via the CDN (<script src="https://cdn.tailwindcss.com"> in _includes/head.html), so utility classes work directly in markup with no compile step.

Running locally

bundle install                # first time only
bundle exec jekyll serve --livereload --host 0.0.0.0 --baseurl "" --force_polling

Serves on http://localhost:4000 with livereload on 35729 (both forwarded by .devcontainer/devcontainer.json, image mcr.microsoft.com/devcontainers/jekyll:2).

_config.yml is not hot-reloaded — restart Jekyll after editing it.

Repository layout

_config.yml            Site config, SEO defaults, plugins, google_script_url
_layouts/
  default.html         Full layout: nav + content + footer + main.js
  minimal.html         Stripped layout: logo + "back home" + theme toggle (subpages)
_includes/
  head.html            <head>: theme pre-paint, fonts, Tailwind config, SEO, analytics
  nav.html             Fixed top nav (used by default layout)
  footer.html          Footer with contact + legal (OSVČ) details
  social-meta.html     og:description / twitter:description (before <!-- Begin Jekyll SEO tag v2.8.0 -->
<title>CLAUDE.md | OD Videos</title>
<meta name="generator" content="Jekyll v3.10.0" />
<meta property="og:title" content="CLAUDE.md" />
<meta name="author" content="Ondřej Demuth" />
<meta property="og:locale" content="cs_CZ" />
<meta name="description" content="Tvoříme realitní i firemní videa, reklamy, obsah na sociální sítě i svatební filmy. Vaši představu natočíme a profesionálně zpracujeme do finální podoby." />
<meta property="og:description" content="Tvoříme realitní i firemní videa, reklamy, obsah na sociální sítě i svatební filmy. Vaši představu natočíme a profesionálně zpracujeme do finální podoby." />
<link rel="canonical" href="https://odvideos.cz/CLAUDE/" />
<meta property="og:url" content="https://odvideos.cz/CLAUDE/" />
<meta property="og:site_name" content="OD Videos" />
<meta property="og:image" content="https://odvideos.cz/assets/images/og-image.jpg" />
<meta property="og:image:height" content="630" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:alt" content="OD Videos — realitní a letecká videotvorba" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:image" content="https://odvideos.cz/assets/images/og-image.jpg" />
<meta name="twitter:image:alt" content="OD Videos — realitní a letecká videotvorba" />
<meta property="twitter:title" content="CLAUDE.md" />
<meta name="twitter:site" content="@" />
<meta name="twitter:creator" content="@Ondřej Demuth" />
<script type="application/ld+json">
{"@context":"https://schema.org","@type":"WebPage","author":{"@type":"Person","name":"Ondřej Demuth"},"description":"Tvoříme realitní i firemní videa, reklamy, obsah na sociální sítě i svatební filmy. Vaši představu natočíme a profesionálně zpracujeme do finální podoby.","headline":"CLAUDE.md","image":{"width":1200,"height":630,"alt":"OD Videos — realitní a letecká videotvorba","url":"https://odvideos.cz/assets/images/og-image.jpg","@type":"imageObject"},"publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://odvideos.cz/assets/images/logo/logo-color.png"},"name":"Ondřej Demuth"},"url":"https://odvideos.cz/CLAUDE/"}</script>
<!-- End Jekyll SEO tag -->
)
  structured-data.html JSON-LD ProfessionalService schema
pages/                 Actual site pages (each sets its own `permalink`)
  index.html           Home (/)  — hero, about, services, contact form, gallery
  cenik.html           Price calculator (/cenik)
  gallery.html         Gallery (/galerie)  ⚠ still placeholder content
  recenze.html         Review form (/recenze) → Google Apps Script
  dekujeme.html        Thank-you page (/dekujeme) — contact-form success target
  privacy-policy.html  Privacy policy (/ochrana-soukromi)
  404.html             Not-found page (/404)
assets/
  css/main.css         The stylesheet in use (theme tokens + animations)
  js/main.js           The script in use (menu, theme, analytics, forms)
  images/              Logos, client logos (assets/images/clients/), og-image, portrait
  videos/              Hero background videos
google-apps-script/    Code.gs + README for the /recenze → Google Sheets backend
_drafts/               Jekyll drafts (not published)

Key conventions

Layouts & pages

Theming (light/dark)

SEO & metadata

` to avoid duplicate tags. Don’t add a competing <title>.

Fonts

JavaScript (assets/js/main.js)

Forms

Known stale / placeholder content (be careful)

These are leftovers from the original template the site was forked from — do not treat them as the source of truth for how the site works:

README.md is now current — it accurately describes the OD Videos Jekyll site (tech stack, structure, local dev), so it can be trusted as a companion to this file.

Git workflow