2023-02-18 14:41:24 +01:00
|
|
|
extends layout/main.pug
|
|
|
|
block root
|
|
|
|
- var title = 'Main page'
|
|
|
|
block content
|
2023-02-22 07:43:42 +01:00
|
|
|
|
|
|
|
h1(align='center') Welcome on my website!
|
|
|
|
p
|
|
|
|
| Hi there! My name is Alice and I like to build software.
|
|
|
|
hr
|
|
|
|
p
|
|
|
|
| Currently I am working on a college project (which is going to air in june)
|
|
|
|
br
|
|
|
|
| This website was built using Express.js
|
|
|
|
p
|
|
|
|
| Check out my
|
2023-03-18 03:54:46 +01:00
|
|
|
a(href='https://github.com/b1ek' class='web_link') GitHub page
|
2023-02-22 07:43:42 +01:00
|
|
|
| and my
|
2023-03-18 03:54:46 +01:00
|
|
|
a(href='/resume' class='web_link') resume
|
2023-02-22 07:43:42 +01:00
|
|
|
hr
|
|
|
|
table(style='position:relative;left:50%;transform:translateX(-50%);width:90%')
|
2023-02-18 14:41:24 +01:00
|
|
|
tr
|
|
|
|
td(width='20%')
|
|
|
|
h4 Guest book
|
|
|
|
| (
|
2023-03-18 03:54:46 +01:00
|
|
|
a(href='/guestbook.rss' class='web_link') RSS
|
2023-02-22 08:55:13 +01:00
|
|
|
| )
|
|
|
|
if (gb_entries)
|
|
|
|
ul(style='margin:0 10px;padding:0')
|
|
|
|
each entry in gb_entries
|
|
|
|
li(style='padding-bottom:10px')
|
|
|
|
| #{entry.name} says:
|
|
|
|
br
|
|
|
|
| #{entry.text}
|
2023-03-18 03:54:46 +01:00
|
|
|
a(href='/guestbook' class='web_link') Write something in my guestbook!
|
2023-02-22 07:43:42 +01:00
|
|
|
td(width='50%' style='border-left:1px solid #c2c4c2;border-right:1px solid #c2c4c2;padding:0 1%')
|
2023-03-02 14:25:44 +01:00
|
|
|
h3 Articles
|
2023-02-18 14:41:24 +01:00
|
|
|
ul
|
2023-02-27 07:34:08 +01:00
|
|
|
each article in articles
|
2023-02-18 14:41:24 +01:00
|
|
|
li(style='font-size:16pt')
|
2023-02-27 07:34:08 +01:00
|
|
|
h5= article.title
|
2023-02-18 14:41:24 +01:00
|
|
|
ul
|
2023-02-27 07:34:08 +01:00
|
|
|
li= article.shortText
|
2023-02-18 14:41:24 +01:00
|
|
|
|
|
|
|
td(width='20%')
|
|
|
|
h4 Links
|
2023-03-18 03:54:46 +01:00
|
|
|
a(href='https://cameronsworld.net' class='web_link') cameronsworld.net
|
2023-03-18 04:06:14 +01:00
|
|
|
br
|
|
|
|
a(href='https://www.iconarchive.com/' class='web_link') iconarchive.com
|
|
|
|
br
|
|
|
|
font(size=2) Big icon archive
|