all repos — site @ 1f806da3a20fe6f34628adf3729af6eda308caf3

source for my site, found at icyphox.sh

chore: move resume.pdf to 'static/'

Signed-off-by: Anirudh <icyph0x@pm.me>
Anirudh icyph0x@pm.me
Sat, 03 Nov 2018 09:08:16 +0530
commit

1f806da3a20fe6f34628adf3729af6eda308caf3

parent

8d3077d2a4311aba5a9d761190e27857208df8c9

3 files changed, 38 insertions(+), 1 deletions(-)

jump to
M build/index.htmlbuild/index.html

@@ -46,7 +46,7 @@

<div class="right"> <a href="https://github.com/icyphox" target="_blank">GitHub</a> <a href="https://twitter.com/icyphox" target="_blank">Twitter</a> - <a href="https://0x0.st/s6_E.pdf" target="_blank">Résumé</a> + <a href="/resume.pdf" target="_blank">Résumé</a> <a href="/gpg.txt" target="_blank">GPG</a> </div> </div>
A templates/blog.html

@@ -0,0 +1,37 @@

+<!DOCTYPE html> +<html lang=en> +<link rel="stylesheet" href="/static/style.css" type="text/css"> +<link rel="shortcut icon" type="images/x-icon" href="/static/favicon.ico"> +<meta content="linux, infosec, open source." name=description> +<meta name="viewport" content="initial-scale=1"> +<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> +<meta name="HandheldFriendly" content="true"> +<meta name="twitter:card" content="summary_large_image"> +<meta name="twitter:site" content="@icyphox"> +<meta name="twitter:title" content="Anirudh"> +<meta name="twitter:description" content="linux, infosec, open source."> +<meta name="twitter:image" content="https://0x0.st/svQ1.png"> +<meta property="og:title" content="Anirudh"> +<meta property="og:type" content="website"> +<meta property="og:description" content="linux, infosec, open source."> +<meta property="og:url" content="https://icy.ph0x.me"> +<meta property="og:image" content="https://0x0.st/svQ1.png"> +<html> + <title> + {{ title }} + </title> + +<div class="container"> + <header> + <div class="right header"> + {{ header }} + </div> + </header> + + <body> + <div class="content"> + {{ body }} + </div> + </body> +</div> +</html>