diff options
| author | A Farzat <a@farzat.xyz> | 2024-11-21 17:15:56 +0900 | 
|---|---|---|
| committer | A Farzat <a@farzat.xyz> | 2024-11-21 17:15:56 +0900 | 
| commit | 17478f87e5aa333f40ab70447bb11554a0c64ad6 (patch) | |
| tree | dc62a758e38601d792df45c70ec5e7b46f5bcb9e /templates/index.html | |
| parent | 3688821b4640fbd75ca130bea2f8e80eeeba8259 (diff) | |
| download | farzat.xyz-17478f87e5aa333f40ab70447bb11554a0c64ad6.tar.gz farzat.xyz-17478f87e5aa333f40ab70447bb11554a0c64ad6.zip  | |
Made an initial attempt
Diffstat (limited to 'templates/index.html')
| -rw-r--r-- | templates/index.html | 19 | 
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 %}  | 
