diff --git a/dist/index.html b/dist/index.html index e1c0cfa..db3247b 100644 --- a/dist/index.html +++ b/dist/index.html @@ -1,6 +1,356 @@ -logan's site

logan's site


me

+

logan's site


me

I am a programming and philosophy enthusiast. Once upon a time i was a competitive debater on a few local and @@ -128,4 +479,8 @@ h1,h2 { get the hang of it. Currently in the process of discovering my love for hypertext and the world wide web! -

blog

    \ No newline at end of file +

    migration

    + I am currently in the process of migrating my git repositories + and portfolio to be entirely self hosted. Some features and + integrations are still a work in progress. Fishbowl will return soon! +
    \ No newline at end of file diff --git a/dist/res/merriweather-regular.woff2 b/dist/res/merriweather-regular.woff2 new file mode 100644 index 0000000..8a33d49 Binary files /dev/null and b/dist/res/merriweather-regular.woff2 differ diff --git a/src/main.css b/src/main.css index cd232d1..b1b956f 100644 --- a/src/main.css +++ b/src/main.css @@ -1,6 +1,6 @@ @font-face { font-family: 'merriweather'; - src: url(/res/merriweather-regular.ttf); + src: url(/res/merriweather-regular.woff2); } @font-face { @@ -69,9 +69,10 @@ code { text-align: center; } -ul { +.twocols{ display: inline-block; columns: 2; + text-align: left; -webkit-columns: 2; -moz-columns: 2; } diff --git a/src/main.rs b/src/main.rs index 0521e5a..db0165d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -12,7 +12,7 @@ fn head() -> Markup { meta name="viewport" content="width=device-width, initial-scale=1.0"; meta http-equiv="X-UA-Compatible" content="ie=edge"; title { "logan's site" }; - // style { (include_str!("normalize.css")) } + style { (include_str!("normalize.css")) } style { (PreEscaped(include_str!("main.css"))) } } } @@ -52,7 +52,7 @@ fn index() -> Markup { h1 {"logan's site"} hr; div .flex { - div .third { + div .half { h2 {"me"} " I am a programming and philosophy @@ -64,20 +64,23 @@ fn index() -> Markup { process of discovering my love for hypertext and the world wide web! " + h2 {"migration"} + " + I am currently in the process of migrating my git repositories + and portfolio to be entirely self hosted. Some features and + integrations are still a work in progress. Fishbowl will return soon! + " } - div .third .text_center { - h2 {"interests"} - ul .twocol { - li { a { "books" } } - li { a { "music" } } - li { a { "software" } } - li { a { "websites" } } - } - } - div .third { - h2 {"blog"} - ul .twocol { - + div .half { + h2 {"portfolio"} + ul { + li { a href="https://git.lgatlin.dev/" { "my git server" } } + li { a href="https://git.lgatlin.dev/logan/http-server" { "http web server" } } + li { a href="https://git.lgatlin.dev/logan/html-templater" { "html templating language" } } + li { a href="https://git.lgatlin.dev/logan/fishbowl" { "kinematic image processing" } } + li { a href="https://git.lgatlin.dev/logan/forte" { "stack based assembly language" }} + li { a href="https://git.lgatlin.dev/logan/nrange" { "n dimensional cartesian product" }} + li { a href="https://git.lgatlin.dev/logan/stocks" { "stock trading algorithm" }} } } }