manbytesgnu_site

Source files for manbytesgnu.org
git clone git://holbrook.no/manbytesgnu_site.git
Log | Files | Refs

commit 1a41966caebb795b6af5613c2aa04ad70a863e79
parent 0e6c3c6a4bd1037c992d55a0cbf8a652a2968453
Author: nolash <dev@holbrook.no>
Date:   Mon, 26 Apr 2021 11:35:41 +0200

Add crypto addresses

Diffstat:
Acontent/images/donate_btc_qr.png | 0
Acontent/images/donate_eth_qr.png | 0
Dcontent/pages/identities.rst | 41-----------------------------------------
Mlash/static/css/style.css | 10++++++++--
Mlash/templates/base.html | 2+-
Mpelicanconf.py | 2+-
6 files changed, 10 insertions(+), 45 deletions(-)

diff --git a/content/images/donate_btc_qr.png b/content/images/donate_btc_qr.png Binary files differ. diff --git a/content/images/donate_eth_qr.png b/content/images/donate_eth_qr.png Binary files differ. diff --git a/content/pages/identities.rst b/content/pages/identities.rst @@ -1,41 +0,0 @@ -Identities -########## - -:title: Identities -:author: Louis Holbrook - - -Keys -==== - -PGP - personal - `59A844A4 84AC1125 3D3A3E9D CDCBD24D D1D0E001`_ - -PGP - code signing - `0826EDA1 702D1E87 C6E28751 21D2E7BB 88C2A746`_ - -PGP - `Delta Chat`_ - `E19386B2 6EB1F4CC 9B14B4E3 D62A8A77 9612E773`_ - -TOX_ - ``70459C0568A64737F127CA1505FA0485FBB69831C7BD6AC269E369285C7F2E0282283B2AFCD0`` - -.. - - .. _Delta Chat: https://delta.chat/ - -.. - - .. _59A844A4 84AC1125 3D3A3E9D CDCBD24D D1D0E001: https://holbrook.no/keys/louis.asc - -.. - - .. _0826EDA1 702D1E87 C6E28751 21D2E7BB 88C2A746: https://holbrook.no/keys/louis_dev.asc - -.. - - .. _E19386B2 6EB1F4CC 9B14B4E3 D62A8A77 9612E773: https://holbrook.no/keys/louis_deltachat.asc - -.. - - .. _TOX: https://tox.chat/ diff --git a/lash/static/css/style.css b/lash/static/css/style.css @@ -25,7 +25,7 @@ ol { } h2 { - color: #800000; + color: #840020; font-size: 1.7em; } @@ -36,7 +36,7 @@ h1 { h1.top-body-title { padding-top: 0.3em; - color: #800000; + color: #840020; } @@ -119,6 +119,11 @@ a.category { footer.body { padding-top: 2em; + font-size: 0.8em; +} + +footer address#about { + font-style: normal; } /* code */ @@ -159,3 +164,4 @@ div#keys dd tt { + diff --git a/lash/templates/base.html b/lash/templates/base.html @@ -35,7 +35,7 @@ <footer id="contentinfo" class="body"> <hr/> <address id="about" class="vcard body"> - Powered by <a href="https://getpelican.com/">Pelican</a>. + Powered by <a href="https://getpelican.com/">Pelican</a> | ETH <a href="./images/donate_eth_qr.png" title="Ethereum address for tipping">0x185Cbce7650FF7Ad3B587E26B2877d95568805e3</a> | BTC <a href="./images/donate_btc_qr.png" title="Bitcoin address for tipping">12DnRH9HpJ6cfET2LKHrURn2yZBDfDEwHv</a> </address><!-- /#about --> </footer><!-- /#contentinfo --> </body> diff --git a/pelicanconf.py b/pelicanconf.py @@ -37,5 +37,5 @@ DISPLAY_CATEGORIES_ON_MENU = True PLUGINS = ['pelican.plugins.neighbors'] -MENUITEMS = [('tags', '/tags')] +MENUITEMS = [('tags', '/tags.html')]