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

41
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,22 +457,14 @@ 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 state circuits. After over 10 years of
state circuits. After over 10 years of doing robotics I'm finally starting to
doing robotics I'm finally starting to 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>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>
<h2>migration</h2>
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,51 +13,39 @@ pub fn index() -> Markup {
template(html! { template(html! {
h1 {"logan's site"} h1 {"logan's site"}
hr; hr;
div .flex { h2 {"me"}
div .half { "
h2 {"me"} I am a programming and philosophy
" enthusiast. Once upon a time i was a
I am a programming and philosophy competitive debater on a few local and
enthusiast. Once upon a time i was a state circuits. After over 10 years of
competitive debater on a few local and doing robotics I'm finally starting to
state circuits. After over 10 years of get the hang of it. Currently in the
doing robotics I'm finally starting to process of discovering my love for
get the hang of it. Currently in the hypertext and the world wide web!
process of discovering my love for "
hypertext and the world wide web! h2 {"portfolio"}
" ul {
h2 {"migration"} li {
" a href="https://git.lgatlin.dev/logan" { "my git server" }
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 { li {
h2 {"portfolio"} a href="https://git.lgatlin.dev/logan/http-server" { "http web server" }
ul { }
li { li {
a href="https://git.lgatlin.dev/logan" { "my git server" } a href="https://git.lgatlin.dev/logan/html-templater" { "html templating language" }
} }
li { li {
a href="https://git.lgatlin.dev/logan/http-server" { "http web server" } a href="https://git.lgatlin.dev/logan/fishbowl" { "kinematic image processing" }
} }
li { li {
a href="https://git.lgatlin.dev/logan/html-templater" { "html templating language" } a href="https://git.lgatlin.dev/logan/forte" { "stack based assembly language" }
} }
li { li {
a href="https://git.lgatlin.dev/logan/fishbowl" { "kinematic image processing" } a href="https://git.lgatlin.dev/logan/nrange" { "n dimensional cartesian product" }
} }
li { li {
a href="https://git.lgatlin.dev/logan/forte" { "stack based assembly language" } a href="https://git.lgatlin.dev/logan/stocks" { "stock trading algorithm" }
}
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" }
}
}
} }
} }
}) })

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;
}