pastel.codes/views/about.pug

68 lines
2.3 KiB
Plaintext
Raw Normal View History

2020-06-22 20:36:41 +01:00
extends layout
block nav-links
2020-07-01 12:10:30 +01:00
li.nav-item
2020-06-23 19:18:30 +01:00
a.nav-link(href='/')
2020-06-22 20:36:41 +01:00
span Home
2020-07-01 12:10:30 +01:00
li.nav-item.active
2020-06-22 20:36:41 +01:00
a.nav-link(href='#')
span About
li.nav-item
a.nav-link(href='#')
span CV
li.nav-item
a.nav-link(href='https://git.pastel.codes/Blankie')
span Projects
li.nav-item
a.nav-link(href='https://blog.pastel.codes')
span Blog
li.nav-item
2020-06-29 10:09:10 +01:00
a.nav-link(href='/contact')
2020-06-22 20:36:41 +01:00
span Contact
block content
2020-06-27 17:46:21 +01:00
.container
.about-pos
.row
.col
h1
span Hello.
p Im Esther, a 19 year old student in 2nd year of university, who studies computer science & artificial intelligence.
2020-07-01 12:10:30 +01:00
p In my free time, I create small projects to learn new skills to be helpful for others, recently i have been focusing on node.js.
p Graphic design is also very fun and i enjoy making small projects to post on instagram, it helps with programming too which is neat
2020-06-27 17:46:21 +01:00
.row
.col.start
h1
span Projects.
.row
each val in project
.col
.pr
a(href=val.url)
if val.feature_image
img(src=val.feature_image)
else
img(src="/images/logo.png")
.pr-text
a(href=val.url)
h1 #{val.title}
p #{val.excerpt}
.row
.col.start
h1
span Blog.
.row
each val in blog
.col
.pr
a(href=val.url)
if val.feature_image
img(src=val.feature_image)
else
img(src="/images/logo.png")
.pr-text
a(href=val.url)
h1 #{val.title}
p #{val.excerpt}