diff options
| author | jwansek <eddie.atten.ea29@gmail.com> | 2021-03-25 23:17:35 +0000 | 
|---|---|---|
| committer | jwansek <eddie.atten.ea29@gmail.com> | 2021-03-25 23:17:35 +0000 | 
| commit | e204aaaa9c5155401ad3ab8bb7edec6588055fb0 (patch) | |
| tree | c9a1af33ae205daf6d6ae3e08b98bf8c2cdfb681 /templates/template.html | |
| parent | 0ccad16d5de0a9e8a5b651b13c60ef3abdb192c8 (diff) | |
| download | eda.gay-e204aaaa9c5155401ad3ab8bb7edec6588055fb0.tar.gz eda.gay-e204aaaa9c5155401ad3ab8bb7edec6588055fb0.zip | |
updated the css and html to be w3c valid
Diffstat (limited to 'templates/template.html')
| -rw-r--r-- | templates/template.html | 34 | 
1 files changed, 22 insertions, 12 deletions
| diff --git a/templates/template.html b/templates/template.html index d2f1382..00a7cea 100644 --- a/templates/template.html +++ b/templates/template.html @@ -1,5 +1,5 @@  <!doctype html> -<html> +<html lang="en">      <head>          <meta name="abuseipdb-verification" content="3IuG6dik" />          <link rel='stylesheet' href="{{url_for('static', filename='style.css')}}"> @@ -9,17 +9,17 @@      <body>          <div id=wrapper>              <header> -                <span> -                    <nav id=links> +                <div id="externallinks"> +                    <nav>                          <ul>                              {% for name, link in links %}                              <li> -                                <a href={{link}}>{{name}}</a> +                                <a href="{{link}}">{{name}}</a>                              </li>                              {% endfor %}                          </ul>                      </nav> -                </span>          +                </div>                           <div id=headerflex>                      <div id=headers>                          <a href="/" id=TheTitle><h1>{{title}}</h1></a> @@ -27,14 +27,14 @@                              <ul>                                  {% for name, link in articles %}                                  <li> -                                    <a href={{link}}>{{name}}</a> +                                    <a href="{{link}}">{{name}}</a>                                  </li>                                  {% endfor %}                              </ul>                          </nav>                      </div>                      <a href="/"> -                        <img alt={{image[0]}} src={{image[1]}}> +                        <img alt="{{image[0]}}" src="{{image[1]}}">                      </a>                           </div>              </header> @@ -44,29 +44,39 @@                      <h4>{{dt}}</h4>                      <h5>this category:</h5>                      <ul> -                        <li><b><a href={{'/thoughts#'+category.replace(' ', '_')}}>{{category}}</a></b></li> +                        <li><b><a href="{{'/thoughts#'+category.replace(' ', '_')}}">{{category}}</a></b></li>                      </ul>                      <h5>related thoughts:</h5>                      <ul>                          {% for id_, title, dt, category in related %} -                            <li><a href={{"/thought?id=%i" % id_}}>{{title}}</a></li> +                            <li><a href="{{'/thought?id=%i' % id_}}">{{title}}</a></li>                          {% endfor %}                      </ul>                      <h5>other categories:</h5>                      {% for category_name in othercategories %}                          <ul> -                            <li><a href={{'/thoughts#'+category_name.replace(' ', '_')}}>{{category_name}}</a></li> +                            <li><a href="{{'/thoughts#'+category_name.replace(' ', '_')}}">{{category_name}}</a></li>                          </ul>                      {% endfor %}                  </aside>              {% endif %} -            <article> +            <div id="content">                  {% block content %}                  {% endblock %} -            </article> +            </div>              <footer>                  <p>this site is <a href="/thought?id=3">javascript free</a></p>                  <a href="https://github.com/jwansek/edaweb">sauce code released under gplv3</a> +                <p> +                    <a href="http://jigsaw.w3.org/css-validator/check/referer"> +                        <img style="border:0;width:88px;height:31px" +                            src="http://jigsaw.w3.org/css-validator/images/vcss-blue" +                            alt="Valid CSS!" /> +                    </a> +                </p> +                <a href="https://www.abuseipdb.com/user/55019" title="AbuseIPDB is an IP address blacklist for webmasters and sysadmins to report IP addresses engaging in abusive behavior on their networks"> +                    <img src="https://www.abuseipdb.com/contributor/55019.svg" style="width: 201px;" alt="AbuseIPDB Contributor Badge"> +                </a>              </footer>          </div>      </body> | 
