summaryrefslogtreecommitdiffstats
path: root/_layouts/page.html
blob: 5ebc0669e5ef84dd9db7b670d2caf8736fd5b6d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
---
layout: base
---
<div class="row">
    <div class="col-md-7">
        <h1>
            <a class="rss pull-right" href="/feed.xml"><i class="fa fa-rss"></i></a>
            {{ page.title }}
        </h1>
        {% if page.url != '/' %}
        <p class="date">
            {% if page.date %}Published {{ page.date | date: "%Y-%m-%d" }}{% endif %}
            on <a href="/">Drew DeVault's blog</a>
            <span class="hidden-xs">
              &mdash;
              <a href="{{ page.url }}">
                Permalink
              </a>
            </span>
        </p>
        {% endif %}
        <article>
          {{ content }}
        </article>
    </div>
    <div class="col-md-3 col-md-offset-2 sidebar text-left">
        <hr class="visible-xs" />
        <p>I write software. Occasionally, I will compose a post for this blog.</p>
        <p>
            <i class="fa fa-code-fork"></i>
            <a href="https://git.sr.ht/~sircmpwn">~sircmpwn</a>
        </p>
        <p>
            <i class="fa fa-github"></i>
            <a href="https://github.com/ddevault">ddevault</a>
        </p>
        <p>
            <i class="fa fa-twitter"></i>
            <a href="https://cmpwn.com/@sir">@sir@cmpwn.com</a>
        </p>
        <p>
            <i class="fa fa-envelope-o"></i>
            <a href="mailto:sir@cmpwn.com">sir@cmpwn.com</a>
        </p>
        <p>
            <i class="fa fa-lock"></i>
            <a href="/publickey.txt">7BC79407090047CA</a>
        </p>
        {% if page.url != '/' %}
        <h3>Recent Posts</h3>
        {% for post in site.posts limit: 3 %}
        <div class="post-stub">
          {{ post.date | date: "%Y-%m-%d" }}<br />
          <a href="{{ post.url }}">{{ post.title }}</a>
        </div>
        {% endfor %}
        {% endif %}
        <h3>My Work</h3>
        <p>
            A few interesting projects:
        </p>
        <div class="post-stub">
          <a href="https://sr.ht">sr.ht</a>,
          an open-source, hosted software development forge
        </div>
        <div class="post-stub">
          <a href="https://github.com/SirCmpwn/Sway">Sway</a>,
          an i3-compatible tiling Wayland compositor
        </div>
        <div class="post-stub">
          <a href="http://www.knightos.org">KnightOS</a>,
          a Unix-like operating system for calculators
        </div>
        <div class="post-stub">
          <a href="http://github.com/SirCmpwn/TrueCraft">TrueCraft</a>,
          a Minecraft beta 1.7.3-compatible game
        </div>
        <div class="post-stub">
          <a href="http://github.com/SirCmpwn/aerc">aerc</a>,
          a hackable asynchronous email client for your terminal
        </div>
        <div class="post-stub">
          <a href="http://github.com/SirCmpwn/pass-rotate">pass-rotate</a>,
          the youtube-dl of automated password rotation
        </div>
        <h3>Consulting</h3>
        <p>
          <a href="/consulting">Click here</a> to learn about my consulting services.
        </p>
        <h3>Donate</h3>
        <p>
          <a href="/backers">Click here</a> for information about donating to
          support my work.
        </p>
        <h3>License</h3>
        <p style="font-size: 10pt">
        The content for this site is
        <a href="https://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>.
        The <a href="https://git.sr.ht/~sircmpwn/drewdevault.com">code</a> for this site is
        <a href="https://opensource.org/licenses/MIT">MIT</a>.
        </p>
        <div class="spacer" style="margin-top: 50px;"></div>
    </div>
</div>