Some checks failed
Build Hugo Site / build (push) Failing after 19s
- Custom cyberpunk/console theme with pure CSS - Event management with RSS and iCal calendar feeds - Gitea workflow for automated deployment - Complete documentation and setup instructions 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
29 lines
1.0 KiB
HTML
29 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="{{ or site.Language.LanguageCode }}" dir="{{ or site.Language.LanguageDirection `ltr` }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ if .IsHome }}{{ site.Title }}{{ else }}{{ .Title }} - {{ site.Title }}{{ end }}</title>
|
|
<link rel="stylesheet" href="{{ "css/style.css" | relURL }}">
|
|
|
|
<!-- RSS Feeds -->
|
|
<link rel="alternate" type="application/rss+xml" title="{{ site.Title }} - All Content" href="{{ "feed.xml" | absURL }}">
|
|
<link rel="alternate" type="application/rss+xml" title="{{ site.Title }} - Events" href="{{ "events/feed.xml" | absURL }}">
|
|
|
|
<!-- Calendar Feeds -->
|
|
<link rel="alternate" type="text/calendar" title="{{ site.Title }} - Events Calendar" href="{{ "events/calendar.ics" | absURL }}">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<header>
|
|
{{ partial "header.html" . }}
|
|
</header>
|
|
<main>
|
|
{{ block "main" . }}{{ end }}
|
|
</main>
|
|
<footer>
|
|
{{ partial "footer.html" . }}
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
</html> |