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;
background-image: url("/res/grey.png");
background-repeat: repeat;
height: 100%;
padding: 5px;
padding: 20px 10px 20px;
line-height: 1.75em;
}
.container {
max-width: 1000px;
max-width: 40em;
}
.tile {
@ -420,14 +419,6 @@ code {
text-align: center;
}
.twocols {
display: inline-block;
columns: 2;
text-align: left;
-webkit-columns: 2;
-moz-columns: 2;
}
table {
margin-left: auto;
margin-right: auto;
@ -466,22 +457,14 @@ a:after {
color: black;
}
h1,h2 {
text-align: center;
}
</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
enthusiast. Once upon a time i was a
competitive debater on a few local and
state circuits. After over 10 years of
doing robotics I'm finally starting to
get the hang of it. Currently in the
process of discovering my love for
hypertext and the world wide web!
<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>
</style></head><body><div class="container flex"><main class="tile big"><h1>logan's site</h1><hr><h2>me</h2>
I am a programming and philosophy
enthusiast. Once upon a time i was a
competitive debater on a few local and
state circuits. After over 10 years of
doing robotics I'm finally starting to
get the hang of it. Currently in the
process of discovering my love for
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>

View file

@ -363,13 +363,12 @@ body {
font-family: merriweather;
background-image: url("/res/grey.png");
background-repeat: repeat;
height: 100%;
padding: 5px;
padding: 20px 10px 20px;
line-height: 1.75em;
}
.container {
max-width: 1000px;
max-width: 40em;
}
.tile {
@ -420,14 +419,6 @@ code {
text-align: center;
}
.twocols {
display: inline-block;
columns: 2;
text-align: left;
-webkit-columns: 2;
-moz-columns: 2;
}
table {
margin-left: auto;
margin-right: auto;
@ -466,10 +457,6 @@ a:after {
color: black;
}
h1,h2 {
text-align: center;
}
</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

View file

@ -13,51 +13,39 @@ pub fn index() -> Markup {
template(html! {
h1 {"logan's site"}
hr;
div .flex {
div .half {
h2 {"me"}
"
I am a programming and philosophy
enthusiast. Once upon a time i was a
competitive debater on a few local and
state circuits. After over 10 years of
doing robotics I'm finally starting to
get the hang of it. Currently in the
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!
"
h2 {"me"}
"
I am a programming and philosophy
enthusiast. Once upon a time i was a
competitive debater on a few local and
state circuits. After over 10 years of
doing robotics I'm finally starting to
get the hang of it. Currently in the
process of discovering my love for
hypertext and the world wide web!
"
h2 {"portfolio"}
ul {
li {
a href="https://git.lgatlin.dev/logan" { "my git server" }
}
div .half {
h2 {"portfolio"}
ul {
li {
a href="https://git.lgatlin.dev/logan" { "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" }
}
}
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" }
}
}
})

View file

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