diff options
| author | nicolas sterchele <foss@sterchelen.net> | 2022-09-03 18:54:37 +0200 |
|---|---|---|
| committer | nicolas sterchele <foss@sterchelen.net> | 2022-09-03 18:54:57 +0200 |
| commit | ad0fb353094d69c9f0ea12c45a9ff6798e140329 (patch) | |
| tree | 64a36b6cf1330f4a847eabaa3404ca9838d17efc | |
| parent | b9281c89737419216b710a87c31686d21adf86bc (diff) | |
* add footer and its css class
* change header
* add icon
| -rw-r--r-- | icon.png | bin | 0 -> 1145 bytes | |||
| -rwxr-xr-x | views/header.html | 6 | ||||
| -rwxr-xr-x | views/inks.html | 3 | ||||
| -rwxr-xr-x | views/style.css | 6 |
4 files changed, 11 insertions, 4 deletions
diff --git a/icon.png b/icon.png Binary files differnew file mode 100644 index 0000000..c2e1f95 --- /dev/null +++ b/icon.png diff --git a/views/header.html b/views/header.html index 7cf03f3..2156a62 100755 --- a/views/header.html +++ b/views/header.html @@ -1,13 +1,13 @@ <head> -<title>inks</title> +<title>Links</title> <link href="/style.css{{ .StyleParam }}" rel="stylesheet"> -<link href="/rss" rel="alternate" type="application/rss+xml" title="inks rss"> +<link href="/rss" rel="alternate" type="application/rss+xml" title="links rss"> <link href="/icon.png" rel="icon"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> </head> <body> <header> -<span><a href="/" title="follow via activitypub">@inks@{{ .ServerName }}</a></span> +<span><a href="/" title="follow via activitypub">@{{ .ServerName }}</a></span> <span><a href="/tags">tags</a></span> <span><a href="/sources">sources</a></span> <span><a href="/random">random</a></span> diff --git a/views/inks.html b/views/inks.html index e3e61b0..ef5755e 100755 --- a/views/inks.html +++ b/views/inks.html @@ -34,5 +34,8 @@ </article> {{ end }} </main> +<footer> +<p class="title">Runs on FreeBSD, in France with AMD</p> +</footer> </body> </html> diff --git a/views/style.css b/views/style.css index d5ccf19..c66475b 100755 --- a/views/style.css +++ b/views/style.css @@ -11,7 +11,7 @@ body { a { color: #aea; } -main, header { +main, header, footer { max-width: 1260px; margin: auto; } @@ -39,6 +39,10 @@ blockquote { margin-bottom: 2em; } +footer { + color: #8d8; +} + article.link p { margin: 0; margin-left: 2em; |
