Fix about page

This commit is contained in:
E 2021-09-11 20:13:14 +01:00
parent d352ad2ea2
commit 58ab6498f0
No known key found for this signature in database
GPG Key ID: 91C5E15B03621D7A

View File

@ -1,68 +1,62 @@
extends layout extends layout
block nav-links block nav-links
li.nav-item a(href='/')
a.nav-link(href='/') li(class="py-3 bg-pink text-black hover:bg-black hover:text-pink transition duration-500 ease-in-out")
span Home span Home
li.nav-item.active a(href='#')
a.nav-link(href='#') li(class="py-3 bg-black text-green hover:bg-pink hover:text-black transition duration-500 ease-in-out")
span About span About
li.nav-item a(href='#')
a.nav-link(href='#') li(class="py-3 bg-pink text-black hover:bg-black hover:text-pink transition duration-500 ease-in-out")
span CV span CV
li.nav-item a(href='https://github.com/aurora-dot')
a.nav-link(href='https://github.com/aurora-dot') li(class="py-3 bg-pink text-black hover:bg-black hover:text-pink transition duration-500 ease-in-out")
span Projects span Projects
li.nav-item a(href='https://blog.pastel.codes')
a.nav-link(href='https://blog.pastel.codes') li(class="py-3 bg-pink text-black hover:bg-black hover:text-pink transition duration-500 ease-in-out")
span Blog span Blog
li.nav-item a(href='/contact')
a.nav-link(href='/contact') li(class="py-3 bg-pink text-black hover:bg-black hover:text-pink transition duration-500 ease-in-out")
span Contact span Contact
block content block content
.container div.mt-5
.about-pos div.text-lg
.row h1.font-sans.text-6xl.wavy.mb-10 Hello.
.col p.mb-5 Im E, a 20 year old student in 3rd year of university, who studies computer science & artificial intelligence, somehow achieved a 1:1 for the previous two years.
h1 p.mb-5 In my free time, I create small projects to learn new skills to be helpful for others, recently i have been focusing on Django and tailwind for my job.
span Hello. p.mb-5 Graphic design is also very fun and i enjoy making small projects to post on instagram, it has helped a lot with UX/UI design for applications.
p Im E, a 20 year old student in 3rd year of university, who studies computer science & artificial intelligence. p.mb-5 Currently I am working as a freelance developer for Bounce Technologies!
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. div
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 h1.font-sans.text-6xl.wavy.my-10 Projects.
.row
.col.start
h1
span Projects.
.row
div
each val in project each val in project
.col div
.pr div
a(href=val.url) a(href=val.url)
if val.feature_image if val.feature_image
img(src=val.feature_image) img(class="w-2/3" src=val.feature_image)
else else
img(src="/images/logo.png") img(src="/images/logo.png")
.pr-text div
a(href=val.url) a(href=val.url)
h1 #{val.title} h1.font-sans.text-3xl.mt-3.mb-3 #{val.title}
p #{val.excerpt} p.text-lg #{val.excerpt}
.row div
.col.start h1.font-sans.text-6xl.wavy.my-10 Blog.
h1 div
span Blog.
.row
each val in blog each val in blog
.col div
.pr div
a(href=val.url) a(href=val.url)
if val.feature_image if val.feature_image
img(src=val.feature_image) img(class="w-2/3" src=val.feature_image)
else else
img(src="/images/logo.png") img(src="/images/logo.png")
.pr-text div
a(href=val.url) a(href=val.url)
h1 #{val.title} h1.font-sans.text-3xl.mt-3.mb-3 #{val.title}
p #{val.excerpt} p.text-lg #{val.excerpt}