changed layout

This commit is contained in:
Logan 2024-09-04 22:13:10 -05:00
parent 1c9d5e15d7
commit c6bfe1f197
4 changed files with 48 additions and 103 deletions

25
dist/index.html vendored
View file

@ -363,13 +363,12 @@ body {
font-family: merriweather; font-family: merriweather;
background-image: url("/res/grey.png"); background-image: url("/res/grey.png");
background-repeat: repeat; background-repeat: repeat;
height: 100%; padding: 20px 10px 20px;
padding: 5px;
line-height: 1.75em; line-height: 1.75em;
} }
.container { .container {
max-width: 1000px; max-width: 40em;
} }
.tile { .tile {
@ -420,14 +419,6 @@ code {
text-align: center; text-align: center;
} }
.twocols {
display: inline-block;
columns: 2;
text-align: left;
-webkit-columns: 2;
-moz-columns: 2;
}
table { table {
margin-left: auto; margin-left: auto;
margin-right: auto; margin-right: auto;
@ -466,12 +457,8 @@ a:after {
color: black; color: black;
} }
h1,h2 {
text-align: center;
}
</style></head><body><div class="container flex"><main class="tile big"><h1>logan's site</h1><hr><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="half"><h2>me</h2>
I am a programming and philosophy I am a programming and philosophy
enthusiast. Once upon a time i was a enthusiast. Once upon a time i was a
competitive debater on a few local and competitive debater on a few local and
@ -480,8 +467,4 @@ h1,h2 {
get the hang of it. Currently in the get the hang of it. Currently in the
process of discovering my love for process of discovering my love for
hypertext and the world wide web! hypertext and the world wide web!
<h2>migration</h2> <h2>portfolio</h2><ul><li><a href="https://git.lgatlin.dev/logan">my git server</a></li><li><a href="https://git.lgatlin.dev/logan/http-server">http web server</a></li><li><a href="https://git.lgatlin.dev/logan/html-templater">html templating language</a></li><li><a href="https://git.lgatlin.dev/logan/fishbowl">kinematic image processing</a></li><li><a href="https://git.lgatlin.dev/logan/forte">stack based assembly language</a></li><li><a href="https://git.lgatlin.dev/logan/nrange">n dimensional cartesian product</a></li><li><a href="https://git.lgatlin.dev/logan/stocks">stock trading algorithm</a></li></ul></main></div></body></html>
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><div class="half"><h2>portfolio</h2><ul><li><a href="https://git.lgatlin.dev/logan">my git server</a></li><li><a href="https://git.lgatlin.dev/logan/http-server">http web server</a></li><li><a href="https://git.lgatlin.dev/logan/html-templater">html templating language</a></li><li><a href="https://git.lgatlin.dev/logan/fishbowl">kinematic image processing</a></li><li><a href="https://git.lgatlin.dev/logan/forte">stack based assembly language</a></li><li><a href="https://git.lgatlin.dev/logan/nrange">n dimensional cartesian product</a></li><li><a href="https://git.lgatlin.dev/logan/stocks">stock trading algorithm</a></li></ul></div></div></main></div></body></html>

View file

@ -363,13 +363,12 @@ body {
font-family: merriweather; font-family: merriweather;
background-image: url("/res/grey.png"); background-image: url("/res/grey.png");
background-repeat: repeat; background-repeat: repeat;
height: 100%; padding: 20px 10px 20px;
padding: 5px;
line-height: 1.75em; line-height: 1.75em;
} }
.container { .container {
max-width: 1000px; max-width: 40em;
} }
.tile { .tile {
@ -420,14 +419,6 @@ code {
text-align: center; text-align: center;
} }
.twocols {
display: inline-block;
columns: 2;
text-align: left;
-webkit-columns: 2;
-moz-columns: 2;
}
table { table {
margin-left: auto; margin-left: auto;
margin-right: auto; margin-right: auto;
@ -466,10 +457,6 @@ a:after {
color: black; color: black;
} }
h1,h2 {
text-align: center;
}
</style></head><body><div class="container flex"><main class="tile big"><h1>fishbowl</h1><p> </style></head><body><div class="container flex"><main class="tile big"><h1>fishbowl</h1><p>
Choose an image and click submit. The image will be sent and processed by Choose an image and click submit. The image will be sent and processed by

View file

@ -13,8 +13,6 @@ pub fn index() -> Markup {
template(html! { template(html! {
h1 {"logan's site"} h1 {"logan's site"}
hr; hr;
div .flex {
div .half {
h2 {"me"} h2 {"me"}
" "
I am a programming and philosophy I am a programming and philosophy
@ -26,14 +24,6 @@ pub fn index() -> Markup {
process of discovering my love for process of discovering my love for
hypertext and the world wide web! 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 .half {
h2 {"portfolio"} h2 {"portfolio"}
ul { ul {
li { li {
@ -58,7 +48,5 @@ pub fn index() -> Markup {
a href="https://git.lgatlin.dev/logan/stocks" { "stock trading algorithm" } a href="https://git.lgatlin.dev/logan/stocks" { "stock trading algorithm" }
} }
} }
}
}
}) })
} }

View file

@ -12,13 +12,12 @@ body {
font-family: merriweather; font-family: merriweather;
background-image: url("/res/grey.png"); background-image: url("/res/grey.png");
background-repeat: repeat; background-repeat: repeat;
height: 100%; padding: 20px 10px 20px;
padding: 5px;
line-height: 1.75em; line-height: 1.75em;
} }
.container { .container {
max-width: 1000px; max-width: 40em;
} }
.tile { .tile {
@ -69,14 +68,6 @@ code {
text-align: center; text-align: center;
} }
.twocols {
display: inline-block;
columns: 2;
text-align: left;
-webkit-columns: 2;
-moz-columns: 2;
}
table { table {
margin-left: auto; margin-left: auto;
margin-right: auto; margin-right: auto;
@ -115,8 +106,4 @@ a:after {
color: black; color: black;
} }
h1,h2 {
text-align: center;
}