Publish new layout

This commit is contained in:
Logan 2024-07-22 06:42:36 -05:00
parent 905f1981f4
commit 684e05fd5f
3 changed files with 12 additions and 27 deletions

7
dist/index.html vendored
View file

@ -8,7 +8,6 @@
src: url(/res/cascadiacode.woff2);
}
body {
font-family: merriweather;
background-image: url("/res/grey.png");
@ -31,6 +30,8 @@ body {
}
.third {
padding-left: 5px;
padding-right: 5px;
flex: 30%;
}
@ -118,7 +119,7 @@ h1,h2 {
}
</style></head><body><div class="container flex"><main class="tile big"><h1>logan's site</h1><hr><div class="flex"><div class="half"><h2>me</h2>
</style></head><body><div class="container flex"><main class="tile big"><h1>logan's site</h1><hr><div class="flex"><div class="third"><h2>me</h2>
I am a programming and philosophy
enthusiast. Once upon a time i was a
competitive debater on a few local and
@ -127,4 +128,4 @@ h1,h2 {
get the hang of it. Currently in the
process of discovering my love for
hypertext and the world wide web!
</div><div class="half text_center"><h2>interests</h2><ul class="twocol"><li><a>books</a></li><li><a>music</a></li><li><a>software</a></li><li><a>websites</a></li></ul></div></div><div class="flex"><dif class="half"><h2>programming</h2><table><tr><th>project</th><th>summary</th></tr><tr><td><a href="">web server</a></td><td>https server implementation</td></tr><tr><td><a href="">html templater</a></td><td>inline html templating language</td></tr><tr><td><a href="">forte</a></td><td>safety focused stack machine and assembly language</td></tr><tr><td><a href="">nrange</a></td><td>cartesian product for N vectors in O(N) time/space</td></tr><tr><td><a href="">fishbowl</a></td><td>kinematic image processing on the web</td></tr><tr><td><a href="">stocks</a></td><td>play money stock trading algorithm</td></tr><tr><td><a href="">the crypt</a></td><td>platforming video game in Godot</td></tr></table></dif><dif class="half"><h2>blog</h2></dif></div></main></div></body></html>
</div><div class="third text_center"><h2>interests</h2><ul class="twocol"><li><a>books</a></li><li><a>music</a></li><li><a>software</a></li><li><a>websites</a></li></ul></div><div class="third"><h2>blog</h2><ul class="twocol"></ul></div></div></main></div></body></html>

View file

@ -8,7 +8,6 @@
src: url(/res/cascadiacode.woff2);
}
body {
font-family: merriweather;
background-image: url("/res/grey.png");
@ -31,6 +30,8 @@ body {
}
.third {
padding-left: 5px;
padding-right: 5px;
flex: 30%;
}

View file

@ -21,7 +21,6 @@ fn head() -> Markup {
fn template(inner: Markup) -> Markup {
html! {
(DOCTYPE)
html {
(head())
body {
@ -53,7 +52,7 @@ fn index() -> Markup {
h1 {"logan's site"}
hr;
div .flex {
div .half {
div .third {
h2 {"me"}
"
I am a programming and philosophy
@ -66,7 +65,7 @@ fn index() -> Markup {
hypertext and the world wide web!
"
}
div .half .text_center {
div .third .text_center {
h2 {"interests"}
ul .twocol {
li { a { "books" } }
@ -75,27 +74,11 @@ fn index() -> Markup {
li { a { "websites" } }
}
}
}
div .flex {
dif .half {
h2 {"programming"}
table {
tr {
th { "project" }
th { "summary" }
}
(prow("web server", "https server implementation", "2024", ""))
(prow("html templater", "inline html templating language", "2024", ""))
(prow("forte", "safety focused stack machine and assembly language", "2024", ""))
(prow("nrange", "cartesian product for N vectors in O(N) time/space", "2024", ""))
(prow("fishbowl", "kinematic image processing on the web", "2023", ""))
(prow("stocks", "play money stock trading algorithm", "2021", ""))
(prow("the crypt", "platforming video game in Godot", "2020", ""))
}
}
dif .half {
div .third {
h2 {"blog"}
ul .twocol {
}
}
}
}