figbert.com-website

[ACTIVE] the website and home of figbert on the clearnet
git clone git://git.figbert.com/figbert.com-website.git
Log | Files | Refs | README | LICENSE

index.html (2396B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3   <head>
      4     <meta charset="UTF-8">
      5     <meta name="viewport" content="width=device-width, initial-scale=1">
      6 
      7     <title>{% if page.title %}{{ page.title }} :: {% endif %}{{ config.title }}</title>
      8 
      9     <link rel="stylesheet" href="{{ get_url(path="global.css") }}">
     10     <link rel="me" href="https://fosstodon.org/@FIGBERT">
     11 
     12     <link type="application/atom+xml" rel="alternate" href="{{ get_url(path="atom.xml", trailing_slash=false) }}" title="{{ config.title }}">
     13 
     14     <meta name="description" content="{% if page.description %}{{ page.description | safe }}{% else %}{{ config.description }}{% endif %}">
     15     <meta property="og:title" content="{% if page.title %}{{ page.title | safe }} :: {% endif %}{{ config.title }}">
     16     <meta property="og:description" content="{% if page.description %}{{ page.description | safe }}{% else %}{{ config.description }}{% endif %}">
     17     <meta property="og:type" content="website">
     18 
     19     {% if current_url %}
     20     <meta property="og:url" content="{{ current_url }}">
     21     <link rel="canonical" href="{{ current_url }}">
     22     {% endif %}
     23 
     24     <link rel="icon" href="{{ get_url(path="icon.png") }}">
     25   </head>
     26   <body>
     27     <header>
     28       <nav>
     29         <a href="{{ config.base_url }}">/</a>
     30         <a href="{{ get_url(path="@/posts/_index.md") }}">/posts</a>
     31         <a href="{{ get_url(path="@/projects/_index.md") }}">/projects</a>
     32         <a href="{{ get_url(path="@/reading/_index.md") }}">/reading</a>
     33         <a href="{{ get_url(path="@/ketamine/_index.md") }}">/ketamine</a>
     34       </nav>
     35     </header>
     36     <main>
     37       {% block content %}{{ section.content | safe }}{% endblock content %}
     38     </main>
     39     <footer>
     40       <section>
     41         <a href="https://hotlinewebring.club/FIGBERT/previous" target="_blank" rel="noopener">&#x3C;</a> 
     42         <a href="https://hotlinewebring.club/" target="_blank" rel="noopener">Hotline Webring</a>
     43         <a href="https://hotlinewebring.club/FIGBERT/next" target="_blank" rel="noopener">&#x3E;</a>
     44       </section>
     45       <section>
     46         <a href="http://geekring.net/site/79/previous" target="_blank" rel="noopener">&#x3C;</a>
     47         <a href="https://geekring.net/" target="_blank" rel="noopener">geekring</a>
     48         <a href="http://geekring.net/site/79/next" target="_blank" rel="noopener">&#x3E;</a>
     49       </section>
     50       <section>✡︎</section>
     51     </footer>
     52   </body>
     53 </html>