diff options
| author | mjfernez <mjf@mjfer.net> | 2021-11-14 17:24:46 -0500 | 
|---|---|---|
| committer | mjfernez <mjf@mjfer.net> | 2021-11-14 17:24:46 -0500 | 
| commit | f7851f77015a26a37780df0e425e4943eab5f7bb (patch) | |
| tree | f87c83dfbec362ffe2830dc8d2ba8fc8371e560d /templates/base.html | |
| parent | 32288da98aa7e2f61e2b0f656614e6db3c87ddd3 (diff) | |
| download | ezcms-f7851f77015a26a37780df0e425e4943eab5f7bb.tar.gz | |
Adjust headings. Add meta tags
Diffstat (limited to 'templates/base.html')
| -rw-r--r-- | templates/base.html | 15 | 
1 files changed, 12 insertions, 3 deletions
| diff --git a/templates/base.html b/templates/base.html index 1509d5c..2515795 100644 --- a/templates/base.html +++ b/templates/base.html @@ -3,9 +3,18 @@      <title>{{ domain }}/{{ title }}</title>      <head>          <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> -	<meta name="viewport" content="width=device-width, initial-scale=1.0"/> +        <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"/> +        <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="/site/favicon.ico">          {% endblock %}      </head>      <body><center> @@ -18,7 +27,7 @@          {% endfor %}          <!-- Add icons here -->          <a href="/feed.xml" target="_blank" rel="noopener noreferrer"> -	<img class="icon" src="/static/rss.svg"></a>  +    <img class="icon" src="/static/rss.svg"></a>           <a href="mailto:mjf@mjfer.net"><img class="icon" src="/static/email.svg"></a>          </div>          <h2>{{ title }}</h2> @@ -30,7 +39,7 @@              <h3 class="center"><a href="{{ parent_dir }}">Go up to parent folder ({{ parent_dir }})</a></h3>              {% endif %}          </div> -	{% if last_update %} +        {% if last_update %}          <p>Last update: {{ last_update }} -4:00 UTC</p>          {% endif %}          <div class="license">{% include 'site/license.html' %}</div> | 
