all repos — site @ 684cd249e5144d9d886dcdc137ca0489703cc9b9

source for my site, found at icyphox.sh

Better footer, end of article text

Signed-off-by: Anirudh <icyph0x@pm.me>
Anirudh icyph0x@pm.me
Mon, 24 Jun 2019 15:29:16 +0530
commit

684cd249e5144d9d886dcdc137ca0489703cc9b9

parent

abc6d633c245b2f61b0a5d4aa742528100cdc137

M build/blog/my-setup/index.htmlbuild/blog/my-setup/index.html

@@ -78,6 +78,11 @@

<p>I plan on converting my desktop back at home into a homeserver setup. Soon™.</p> </div> - </body> + <hr /> + <p class="muted">Questions or comments? Open an issue at <a href="https://github.com/icyphox/site">this repo</a>, or send an email to <a href="mailto:icyph0x@pm.me">icyph0x@pm.me</a>.</p> + <footer> + <img src="https://licensebuttons.net/p/zero/1.0/80x15.png"> + </footer> + </body> </div> -</html>+ </html>
M build/blog/python-for-re-1/index.htmlbuild/blog/python-for-re-1/index.html

@@ -318,6 +318,11 @@

<p>Ciao for now, and I’ll see ya in #2 of this series — PE binaries. Whenever that is.</p> </div> - </body> + <hr /> + <p class="muted">Questions or comments? Open an issue at <a href="https://github.com/icyphox/site">this repo</a>, or send an email to <a href="mailto:icyph0x@pm.me">icyph0x@pm.me</a>.</p> + <footer> + <img src="https://licensebuttons.net/p/zero/1.0/80x15.png"> + </footer> + </body> </div> -</html>+ </html>
M build/blog/rop-on-arm/index.htmlbuild/blog/rop-on-arm/index.html

@@ -249,6 +249,11 @@

<p>Hopefully, I’ll get around to writing about heap exploitation on ARM too. That’s all for now.</p> </div> - </body> + <hr /> + <p class="muted">Questions or comments? Open an issue at <a href="https://github.com/icyphox/site">this repo</a>, or send an email to <a href="mailto:icyph0x@pm.me">icyph0x@pm.me</a>.</p> + <footer> + <img src="https://licensebuttons.net/p/zero/1.0/80x15.png"> + </footer> + </body> </div> -</html>+ </html>
M build/static/style.cssbuild/static/style.css

@@ -117,6 +117,14 @@ text-align: left;

margin: 20px; } +.muted { + color: gray +} + +.muted a { + color: cyan +} + a { color: gray; margin: 0;
M config.pyconfig.py

@@ -3,6 +3,5 @@

title = 'Anirudh' author = '' header = '<a href="/">icyphox.sh</a> (<a href="https://github.com/icyphox/site">src</a>)' -footer = '' +footer = """<img src="https://licensebuttons.net/p/zero/1.0/80x15.png">""" template = 'index.html' # default is index.html -
M static/style.cssstatic/style.css

@@ -117,6 +117,14 @@ text-align: left;

margin: 20px; } +.muted { + color: gray +} + +.muted a { + color: cyan +} + a { color: gray; margin: 0;
M templates/about.htmltemplates/about.html

@@ -31,7 +31,7 @@ <div class="content">

<div class="left"> {{ body }} <footer> - <img src="https://licensebuttons.net/p/zero/1.0/80x15.png"> + {{ footer }} </footer> </div> </body>
M templates/text.htmltemplates/text.html

@@ -33,6 +33,11 @@ <div align="left">

<p> {{ date }} </p> {{ body }} </div> - </body> + <hr /> + <p class="muted">Questions or comments? Open an issue at <a href="https://github.com/icyphox/site">this repo</a>, or send an email to <a href="mailto:icyph0x@pm.me">icyph0x@pm.me</a>.</p> + <footer> + {{ footer }} + </footer> + </body> </div> -</html> + </html>