all repos — site @ 9c8a6c23b3e748703287567a9d64fb054814ecca

source for my site, found at icyphox.sh

feat: loads of changes kek
Anirudh icyph0x@pm.me
Sun, 24 Jun 2018 22:15:17 +0530
commit

9c8a6c23b3e748703287567a9d64fb054814ecca

parent

00bf4ce789f831fb41ae9db2fb5e453e989b0b68

M build/about/index.htmlbuild/about/index.html

@@ -48,8 +48,8 @@ </ul>

</body> +<footer class="footer"> <hr /> -<footer> - <small align="center">Built using <a href="https://github.com/icyphox/vite">Vite</a>.</small> + <small align="center">Built using <a href="https://github.com/icyphox/vite">Vite</a>. View this site's <a href="https://github.com/icyphox/site">source</a>.</small> <p> </p> <footer>
M build/contact/index.htmlbuild/contact/index.html

@@ -6,11 +6,6 @@ <link rel="stylesheet" href="/static/responsive.css" type="text/css">

<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="HandheldFriendly" content="true"> -<style> -body { - margin-top: 10%; -} -</style> <a href="/">home</a> <a href="/gpg.txt">gpg</a> <a href="/about">about</a> <a href="/contact">contact</a> <title> icyphox

@@ -24,8 +19,8 @@ <p>Reach me at <a href="mailto:icyph0x@pm.me">icyph0x@pm.me</a> or at <code>#rice</code> on <a href="https://rizon.net">Rizon</a>.</p>

</body> +<footer class="footer"> <hr /> -<footer> - <small align="center">Built using <a href="https://github.com/icyphox/vite">Vite</a>.</small> + <small align="center">Built using <a href="https://github.com/icyphox/vite">Vite</a>. View this site's <a href="https://github.com/icyphox/site">source</a>.</small> <p> </p> <footer>
M build/index.htmlbuild/index.html

@@ -6,11 +6,6 @@ <link rel="stylesheet" href="/static/responsive.css" type="text/css">

<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="HandheldFriendly" content="true"> -<style> -body { - margin-top: 10%; -} -</style> <a href="/">home</a> <a href="/gpg.txt">gpg</a> <a href="/about">about</a> <a href="/contact">contact</a> <title> icyphox

@@ -20,15 +15,16 @@

<body> <p>Hey there,</p> -<p>This is my new, less flashy website. I lost the Markdown source of my old site in an SSD wipe :v <br /> +<p>I'm <strong><em>icyphox</em></strong>, and this is my new, less flashy website. I lost the Markdown source of my old site in an SSD wipe. The blog's gone (for now), but I'll probably archive it somewhere.</p> <p>More about me, <a href="/about">here</a>.</p> + </div> +<hr /> </body> -<hr /> -<footer> - <small align="center">Built using <a href="https://github.com/icyphox/vite">Vite</a>.</small> +<footer class="footer"> + <small align="center">Built using <a href="https://github.com/icyphox/vite">Vite</a>. View this site's <a href="https://github.com/icyphox/site">source</a>.</small> <p> </p> <footer>
M build/static/responsive.cssbuild/static/responsive.css

@@ -8,7 +8,12 @@ #primary { width:100%; }

#secondary { width:100%; margin:0; border:none; } } html { font-size: 100% } -@media (min-width: 640px) { body {font-size:1rem;} } -@media (min-width:960px) { body {font-size:1.2rem;} } -@media (min-width:1100px) { body {font-size:1.5rem;} } +@media (min-width: 640px) { body {font-size:100%;} } +@media (min-width:960px) { body {font-size:120%;} } +@media (min-width:1100px) { body {font-size:120%;} } + +.footer { + position: absolute; + bottom: 0; +}
M config.pyconfig.py

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

title = 'icyphox' author = '' header = '<a href="/">home</a> <a href="/gpg.txt">gpg</a> <a href="/about">about</a> <a href="/contact">contact</a>' -footer = '<small align="center">Built using <a href="https://github.com/icyphox/vite">Vite</a>.</small>' +footer = '<small align="center">Built using <a href="https://github.com/icyphox/vite">Vite</a>. View this site\'s <a href="https://github.com/icyphox/site">source</a>.</small>' template = 'index.html' # default is index.html -
M pages/_index.mdpages/_index.md

@@ -1,7 +1,6 @@

Hey there, -This is my new, less flashy website. I lost the Markdown source of my old site in an SSD wipe :v +I'm ***icyphox***, and this is my new, less flashy website. I lost the Markdown source of my old site in an SSD wipe. The blog's gone (for now), but I'll probably archive it somewhere. More about me, [here](/about). -
M pages/contact.mdpages/contact.md

@@ -1,3 +1,8 @@

+--- +template: normal.html +--- + + ## contact Reach me at [icyph0x@pm.me](mailto:icyph0x@pm.me) or at `#rice` on [Rizon](https://rizon.net).
M static/responsive.cssstatic/responsive.css

@@ -8,7 +8,12 @@ #primary { width:100%; }

#secondary { width:100%; margin:0; border:none; } } html { font-size: 100% } -@media (min-width: 640px) { body {font-size:1rem;} } -@media (min-width:960px) { body {font-size:1.2rem;} } -@media (min-width:1100px) { body {font-size:1.5rem;} } +@media (min-width: 640px) { body {font-size:100%;} } +@media (min-width:960px) { body {font-size:120%;} } +@media (min-width:1100px) { body {font-size:120%;} } + +.footer { + position: absolute; + bottom: 0; +}
M templates/index.htmltemplates/index.html

@@ -6,11 +6,6 @@ <link rel="stylesheet" href="/static/responsive.css" type="text/css">

<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="HandheldFriendly" content="true"> -<style> -body { - margin-top: 10%; -} -</style> {{ header }} <title> {{ title }}

@@ -19,10 +14,11 @@ </header>

<body> {{ body }} + </div> +<hr /> </body> -<hr /> -<footer> +<footer class="footer"> {{ footer }} <p> {{ author }} </p> <footer>
M templates/normal.htmltemplates/normal.html

@@ -16,8 +16,8 @@ <body>

{{ body }} </body> +<footer class="footer"> <hr /> -<footer> {{ footer }} <p> {{ author }} </p> <footer>