all repos — site @ deb32aeb5bd72fad12403923bbd63ad18b1619bc

source for my site, found at icyphox.sh

templates/text.html (view raw)

 1<!DOCTYPE html>
 2<html lang=en>
 3  <link rel="stylesheet" href="/static/style.css" type="text/css">
 4  <link rel="stylesheet" href="/static/syntax.css" type="text/css">
 5  <link rel="shortcut icon" type="images/x-icon" href="/static/favicon.ico">
 6  <meta charset="UTF-8">
 7  <meta name="description" content="{{ subtitle }}">
 8  <meta name="viewport" content="initial-scale=1">
 9  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
10  <meta content="#151B1B" name="theme-color">
11  <meta name="HandheldFriendly" content="true">
12  <meta name="twitter:card" content="summary_large_image">
13  <meta name="twitter:site" content="@icyphox">
14  <meta name="twitter:title" content="{{ title }}">
15  <meta name="twitter:description" content="{{ subtitle }}">
16  <meta name="twitter:image" content="/static/icyphox.png">
17  <meta property="og:title" content="{{ title }}">
18  <meta property="og:type" content="website">
19  <meta property="og:description" content="{{ subtitle }}">
20  <meta property="og:url" content="https://icyphox.sh">
21  <meta property="og:image" content="/static/icyphox.png">
22  <title>
23    {{ title }}
24  </title>
25  <header class="header">
26    {{ header }}
27  </header>
28  <body> 
29    <div class="content">
30      <div style="float: right">
31        view in <a href="/txt/{{ url }}">plain-text</a>
32      </div>
33      <div style="float: left">
34        {{ date }}
35      </div>
36      <div style="clear: both" align="left">
37        <h1>{{ title }}</h1>
38        <h2 class="subtitle">{{ subtitle }}</h2>
39        {{ body }} 
40      </div>
41      <p class="muted">Questions or comments? 
42      Send an email to 
43      <a href="mailto:~icyphox/x@lists.sr.ht?Subject=Re: {{ title }}">~icyphox/x@lists.sr.ht</a>—my <a href="https://lists.sr.ht/~icyphox/x">public inbox</a>.</p>
44    </div>
45  </body>
46  <footer>
47    {{ footer }}
48  </footer>
49</html>