Add more content and styling

This commit is contained in:
Yash Karandikar 2021-11-10 11:38:26 -06:00
parent 3b422b6c70
commit 0183358872
3 changed files with 26 additions and 0 deletions

View file

@ -4,3 +4,7 @@
width: 60%;
padding: 10px;
}
body {
font-family: 'Ubuntu', sans-serif;
}

View file

@ -5,12 +5,19 @@
<meta charset="utf-8">
<title>Welcome to Yash's Website!</title>
<link rel="stylesheet" href="/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,700;1,300;1,700&display=swap" rel="stylesheet">
</head>
<body>
<section class="section">
<div class="container">
{% block content %} {% endblock %}
<hr>
<div style="text-align: center">
<a href="/">home</a> - <a href="/projects/">projects</a> - built with <a href="https://www.getzola.org/">zola</a>
</div>
</div>
</section>
</body>

View file

@ -4,4 +4,19 @@
<h1 class="title">
Welcome to Yash's website!
</h1>
<p>
Hello there! My name is Yash Karandikar. I am a programmer and Linux enthusiast, as well as an avid Doctor Who fan.
</p>
<p>
Skills:
<ul>
<li>Linux server administration</li>
<li>Docker</li>
<li>Rust</li>
<li>Python</li>
<li>TypeScript</li>
<li>HTML/CSS/JS</li>
</ul>
</p>
{% endblock content %}