mirror of
https://gitlab.com/EternalWanderer/vugo.git
synced 2025-06-08 14:24:26 +02:00
Initial commit
This commit is contained in:
commit
d703c1bfad
31 changed files with 297 additions and 0 deletions
20
layouts/partials/header.html
Normal file
20
layouts/partials/header.html
Normal file
|
@ -0,0 +1,20 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="{{ .Site.Language }}">
|
||||
<head>
|
||||
<title>{{ if not .IsHome }}{{ .Title | title }} | {{ end }}{{ .Site.Title }}</title>
|
||||
<!--<title>{{ .Title }} | {{ .Site.Title }}</title>-->
|
||||
<link rel="canonical" href="{{ .Site.BaseURL }}">
|
||||
<link rel='alternate' type='application/rss+xml' title="{{ .Site.Title }} RSS" href='/index.xml'>
|
||||
<link rel='stylesheet' type='text/css' href='/style.css'>
|
||||
{{ with .Site.Params.favicon }}<link rel="icon" href="{{ . }}">
|
||||
{{ end -}}
|
||||
<meta name="description" content="{{ with .Params.description }}{{ . }}{{ else }}{{ .Summary }}{{ end }}">
|
||||
{{ if isset .Params "tags" }}<meta name="keywords" content="{{ with .Params.tags }}{{ delimit . ", " }}{{ end }}">
|
||||
{{ end -}}
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="robots" content="index, follow">
|
||||
<meta charset="utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<h1 class="logo" id="{{ .Site.Title }}">{{ .Site.Title | title }}</h1>
|
||||
{{ partial "nav.html" . }}
|
Loading…
Add table
Add a link
Reference in a new issue