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 (3286B)


      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="css/fonts.css") }}">
     10     <link rel="stylesheet" href="{{ get_url(path="css/global.css") }}">
     11     <link rel="stylesheet" href="{{ get_url(path="css/nav.css") }}">
     12     <link rel="me" href="https://fosstodon.org/@FIGBERT">
     13 
     14     <link type="application/atom+xml" rel="alternate" href="{{ get_url(path="posts/atom.xml") }}" title="Posts :: {{ config.title }}">
     15     <link type="application/atom+xml" rel="alternate" href="{{ get_url(path="projects/atom.xml") }}" title="Projects :: {{ config.title }}">
     16 
     17     <meta name="description" content="{% if page.description %}{{ page.description | safe }}{% else %}{{ config.description }}{% endif %}">
     18     <meta property="og:title" content="{% if page.title %}{{ page.title | safe }} :: {% endif %}{{ config.title }}">
     19     <meta property="og:description" content="{% if page.description %}{{ page.description | safe }}{% else %}{{ config.description }}{% endif %}">
     20     <meta property="og:type" content="website">
     21 
     22     {% if current_url %}
     23     <meta property="og:url" content="{{ current_url }}">
     24     <link rel="canonical" href="{{ current_url }}">
     25     {% endif %}
     26 
     27     <link rel="icon" href="{{ get_url(path="icon.png") }}">
     28     <meta name="theme-color" content="#212121">
     29   </head>
     30   <body>
     31     <header>
     32       <section>
     33         <h1><a href="{{ config.base_url }}">{{ config.title }}</a></h1>
     34         <h2 id="subtitle">Full Stack Developer</h2>
     35       </section>
     36       <nav>
     37         <ul>
     38           <li><a href="{{ config.base_url }}">Home</a></li>
     39           <li>
     40             <a href="{{ get_url(path="posts/atom.xml") }}" class="rss">RSS</a>
     41             <a href="{{ get_url(path="@/posts/_index.md") }}">Posts</a>
     42           </li>
     43           <li>
     44             <a href="{{ get_url(path="projects/atom.xml") }}" class="rss">RSS</a>
     45             <a href="{{ get_url(path="@/projects/_index.md") }}">Projects</a>
     46           </li>
     47         </ul>
     48       </nav>
     49       <section id="webrings">
     50         <section>
     51           <hr>
     52           <b>Proud member of <a href="https://hotlinewebring.club/" target="_blank" rel="noopener">Hotline Webring</a>!</b><br>
     53           <a href="https://hotlinewebring.club/FIGBERT/previous" target="_blank" rel="noopener">Previous site</a> -- 
     54           <a href="https://hotlinewebring.club/FIGBERT/next" target="_blank" rel="noopener">Next site</a>
     55         </section>
     56 
     57         <section>
     58           <hr>
     59           <b>This site is a proud member of the <a href="https://geekring.net/" target="_blank" rel="noopener">geekring</a>! Check some other geeky websites here!</b><br>
     60           <a href="http://geekring.net/site/79/previous" target="_blank" rel="noopener">Previous site</a> -- 
     61           <a href="http://geekring.net/site/79/random" target="_blank" rel="noopener">Random site</a> -- 
     62           <a href="http://geekring.net/site/79/next" target="_blank" rel="noopener">Next site</a>
     63         </section>
     64       </section>
     65     </header>
     66     <main>
     67       {% block content %}{{ section.content | safe }}{% endblock content %}
     68     </main>
     69   </body>
     70 </html>