diff options
author | Bradley Taunt <bt@btxx.org> | 2024-01-22 13:06:19 -0500 |
---|---|---|
committer | Bradley Taunt <bt@btxx.org> | 2024-01-22 13:06:19 -0500 |
commit | d2e4da10c806d815eded44ade076babb78802c16 (patch) | |
tree | 7494261e22f3255926204164449c7345f5b500e5 /_includes/head.html |
Initial commit to new cgit platform
Diffstat (limited to '_includes/head.html')
-rwxr-xr-x | _includes/head.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/_includes/head.html b/_includes/head.html new file mode 100755 index 0000000..90135d4 --- /dev/null +++ b/_includes/head.html @@ -0,0 +1,10 @@ +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + + <title>{{ site.title }}: {{ page.title }}</title> + <meta name="description" content="{{ site.description }}"> + <link rel="shortcut icon" href="{{ site.baseurl }}/favicon.png"> + <link rel="alternate" type="application/atom+xml" title="{{ site.title }}" href="{{ site.baseurl }}/atom.xml"> + <link rel="stylesheet" href="{{ site.baseurl }}/style.css"> +</head> |