diff options
author | mjfernez <mjf@mjfer.net> | 2022-03-13 15:21:11 -0400 |
---|---|---|
committer | mjfernez <mjf@mjfer.net> | 2022-03-13 15:21:11 -0400 |
commit | 94f71d6f8fc7301dfd470ccf2fee27e078321a78 (patch) | |
tree | 4a6864a043f764dd01e9d5c288ebb70b9be45abb /templates | |
parent | 150b9695fdb0ebfeca0f8d5b268249bea46ea3f3 (diff) | |
download | ezcms-94f71d6f8fc7301dfd470ccf2fee27e078321a78.tar.gz |
Pull changes from mjfer.net
This commit adds the changes from the mjfer.net which enable using git
as the file last update tracker
Diffstat (limited to 'templates')
-rw-r--r-- | templates/base.html | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/templates/base.html b/templates/base.html index c280184..5424505 100644 --- a/templates/base.html +++ b/templates/base.html @@ -3,9 +3,19 @@ <title>{{ domain }}/{{ title }}</title> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> + <meta name="description" content="a homepage run by an idiot, + full of sound and fury, signifying nothing."/> + <meta name="keywords" content="HTML, web, servers, linux, bsd, + hacking, forensics, tor, anonymity, internet, society, luddite, + futurism, lulz, fun, poetry, games, vidya, thoughts, random, + homepage, email server, web server, sound, fury, shakespeare, + nothing, writing, audio, classical music, video game music, + mjfernez, mjfernet, mike, fernez, mikefernez, michael"/> + <meta name="author" content="mjfernez"> <meta name="viewport" content="width=device-width, initial-scale=1.0"/> {% block css%} <link rel="stylesheet" type="text/css" href="/static/main.css"> + <link rel="icon" href="/favicon.ico"> {% endblock %} </head> <body><center> @@ -17,16 +27,16 @@ <b> <a href="/{{ dir }}">{{ dir }}/</a> |</b> {% endfor %} <!-- Add icons here --> - <a href="/feed.xml"target="_blank" rel="noopener noreferrer"> - <img src="https://icons.getbootstrap.com/assets/icons/rss-fill.svg"> - </a> + <a href="/feed.xml" target="_blank" rel="noopener noreferrer"> + <img class="icon" src="/static/rss.svg"></a> + <a href="mailto:mjf@mjfer.net"><img class="icon" src="/static/email.svg"></a> </div> <h2 class="center">{{ title }}</h2> <div class="content"> {% block content %} {% endblock %} <h3 class="center">{{ errors }}</h3> - {% if parent_dir %} + {% if parent_dir %} <h3 class="center"><a href="{{ parent_dir }}">Go up to parent folder ({{ parent_dir }})</a></h3> {% endif %} </div> |