aboutsummaryrefslogtreecommitdiff
path: root/templates/index.html
diff options
context:
space:
mode:
authorA Farzat <a@farzat.xyz>2024-11-21 17:15:56 +0900
committerA Farzat <a@farzat.xyz>2024-11-21 17:15:56 +0900
commit17478f87e5aa333f40ab70447bb11554a0c64ad6 (patch)
treedc62a758e38601d792df45c70ec5e7b46f5bcb9e /templates/index.html
parent3688821b4640fbd75ca130bea2f8e80eeeba8259 (diff)
downloadfarzat.xyz-17478f87e5aa333f40ab70447bb11554a0c64ad6.tar.gz
farzat.xyz-17478f87e5aa333f40ab70447bb11554a0c64ad6.zip
Made an initial attempt
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/templates/index.html b/templates/index.html
new file mode 100644
index 0000000..3f4e205
--- /dev/null
+++ b/templates/index.html
@@ -0,0 +1,19 @@
+{% extends "base.html" %}
+
+{% block title %} Farzat's profile {% endblock %}
+
+{% block content %}
+<div class="hero">
+ <div class="hero__title">
+ <h1>
+ <span class="--main">Hi! I am <span class="color-primary">Farzat</span>,</span>
+ <span class="--sub">a <span class="color-gradient">software developer</span></span>
+ <span class="--sub-sub">and <span class="text-stroke color-accent">computer enthusiast</span></span>
+ </h1>
+ </div>
+ <div class="hero__img">
+ <img src="/img/profile-pic.jpg" alt="Profile pic" class="profile-pic">
+ </div>
+</div>
+<p>Unfortunately my website is still incomplete. I hope nonetheless that you like it!</p>
+{% endblock content %}