Compare commits

...

13 Commits

Author SHA1 Message Date
davidovski 4c0c8e66fb removed left padding for ul 2022-05-23 22:47:18 +01:00
davidovski b95ed1a3c8 moved summaries to about 2022-05-23 22:46:14 +01:00
davidovski 0b292997d5 removed bullets for ul 2022-05-23 22:44:15 +01:00
davidovski 8c90873914 not centered blogposts 2022-05-23 22:43:04 +01:00
davidovski be855364eb width auto on about text 2022-05-23 22:42:01 +01:00
davidovski 0817db805e display inline 2022-05-23 22:40:34 +01:00
davidovski 1d07f47fb0 image float right 2022-05-23 22:39:10 +01:00
davidovski a3caf78394 image to 35% 2022-05-23 22:38:41 +01:00
davidovski 39a31fe7f2 use layout grid 2022-05-23 22:37:35 +01:00
davidovski 631bf6af4f not float right 2022-05-23 22:36:28 +01:00
davidovski 90cb519995 use br 2022-05-23 22:35:29 +01:00
davidovski 6668d06bc4 removed hrs 2022-05-23 22:34:48 +01:00
davidovski 02b68c9a0e made width auto 2022-05-23 22:33:00 +01:00
5 changed files with 31 additions and 21 deletions

View File

@ -87,7 +87,7 @@ def make():
summary_templ = getTemplateHTML("summary.html")
summariesHTML = getTemplateHTML("about.html") + "\n<hr><ul>\n"+ "\n".join(
summariesHTML = getTemplateHTML("about.html").replace("%posts%", "\n<ul>\n"+ "\n".join(
[
formatEntry(summary_templ, page)
.replace(
@ -97,7 +97,7 @@ def make():
for page in pages
][: : -1]
) + "</ul>"
) + "</ul>")
entry_templ = getTemplateHTML("page.html")

View File

@ -1,10 +1,10 @@
https://git.davidovski.xyz/davidovski.git
https://git.davidovski.xyz/xilinux/xibuild.git
https://git.davidovski.xyz/xilinux/xipkg.git
https://git.davidovski.xyz/dot.git
https://github.com/davidovski/glsl-mandelbrot.git
https://github.com/davidovski/dungeon-generator.git
https://github.com/davidovski/chatroom.git
https://github.com/davidovski/kblg.git
https://github.com/davidovski/asteriods.git
https://github.com/davidovski/anyscroll.git
#https://git.davidovski.xyz/davidovski.git
#https://git.davidovski.xyz/xilinux/xibuild.git
#https://git.davidovski.xyz/xilinux/xipkg.git
#https://git.davidovski.xyz/dot.git
#https://github.com/davidovski/glsl-mandelbrot.git
#https://github.com/davidovski/dungeon-generator.git
#https://github.com/davidovski/chatroom.git
#https://github.com/davidovski/kblg.git
#https://github.com/davidovski/asteriods.git
#https://github.com/davidovski/anyscroll.git

View File

@ -96,10 +96,12 @@ hr {
border: 0;
border-bottom: 2px solid #f58f44;
}
.title {
font-size: 45px;
color: #f58f44;
}
.small {
font-size: 9px;
padding: 0;
@ -139,13 +141,19 @@ pre {
}
.about {
width: 65%;
float: left;
float: left;
width: auto;
}
.image {
width: 35%;
float: right;
width: auto;
float: right;
}
ul {
list-style-type: none;
margin-left: 0;
padding-left: 0;
}
img {

View File

@ -10,9 +10,11 @@
<div class="image">
<img src="/images/remotecontrol.gif">
</div>
<div>
<h2>blog posts</h2>
%posts%
</div>
</div>
<hr>
<hr>
<h2 class="header">blog posts</h2>

View File

@ -33,8 +33,8 @@
<a color="#b5bd68" style="color: var(--green)" href="/rss.xml">rss</a>
</div>
</div>
<hr>
<hr>
%content%
</div>