all repos — site @ 47ead7cee313948843ff88673ac7a36cc7c69127

source for my site, found at icyphox.sh

templates/about.html (view raw)

 1<!DOCTYPE html>
 2<html lang=en>
 3  <link rel="stylesheet" href="/static/style.css" type="text/css">
 4  <link rel="shortcut icon" type="images/x-icon" href="/static/favicon.ico">
 5  <meta name="description" content="{{ subtitle }}">
 6  <meta charset="UTF-8">
 7  <meta name="viewport" content="initial-scale=1">
 8  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
 9  <meta content="#222" name="theme-color">
10  <meta name="HandheldFriendly" content="true">
11  <meta name="twitter:card" content="summary_large_image">
12  <meta name="twitter:site" content="@icyphox">
13  <meta name="twitter:title" content="{{ title }}">
14  <meta name="twitter:description" content="{{ subtitle }}">
15  <meta name="twitter:image" content="/static/icyphox.png">
16  <meta property="og:title" content="{{ title }}">
17  <meta property="og:type" content="website">
18  <meta property="og:description" content="{{ subtitle }}">
19  <meta property="og:url" content="https://icyphox.sh">
20  <meta property="og:image" content="/static/icyphox.png">
21  <a rel="me" href="https://freeradical.zone/@icyphox"></a>
22  <title>
23    {{ title }}
24  </title>
25  <body> 
26    <section class="container"> 
27
28      <div class="pull-left">
29        <div class="content">
30
31          <header>
32            {{ header }}
33          </header>
34
35
36          {{ body }} 
37        </div>
38      </div>
39      <div class="pull-right">
40        {{ footer }}
41      </div>
42    </section>
43  </body>
44</html>