diff options
author | EuAndreh <eu@euandre.org> | 2021-05-30 19:40:02 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-05-30 19:40:02 -0300 |
commit | b8cf943fb17a750aaf9f567fb97e7392d9cfb455 (patch) | |
tree | 566499e8369922c8af63b574364c619755a02b7b /src/templates/head.html | |
parent | Remove empty Perl code (diff) | |
download | gistatic-b8cf943fb17a750aaf9f567fb97e7392d9cfb455.tar.gz gistatic-b8cf943fb17a750aaf9f567fb97e7392d9cfb455.tar.xz |
WIP init Rust
Diffstat (limited to 'src/templates/head.html')
-rw-r--r-- | src/templates/head.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/templates/head.html b/src/templates/head.html new file mode 100644 index 0000000..e6988ec --- /dev/null +++ b/src/templates/head.html @@ -0,0 +1,12 @@ +<head> + <meta charset="UTF-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="icon" type="image/svg+xml" href="/favicon.svg" /> + <link rel="alternate" type="application/atom+xml" title="{{ name }} atom feed of commits" href="commits.xml" /> + <link rel="alternate" type="application/atom+xml" title="{{ name }} atom feed of tags" href="tags.xml" /> + <link rel="stylesheet" type="text/css" href="style.css" /> + + <title>Log - {{ name }} - {{ description }}</title> + + <!-- FIXME: metadata tags --> +</head> |