mirror of
https://github.com/kristoferssolo/kristofersxyz.git
synced 2025-10-21 18:30:34 +00:00
24 lines
755 B
HTML
24 lines
755 B
HTML
{% extends "layout.html" %}
|
|
{% load static %}
|
|
{% block title %}{{ title }}{% endblock %}
|
|
{% block meta %}
|
|
<link rel="stylesheet"
|
|
type="text/css"
|
|
href="{% static 'main/css/index.css' %}"/>
|
|
<script src="{% static 'main/js/typewriter.js' %}" defer></script>
|
|
{% endblock %}
|
|
{% block content %}
|
|
<div id="landing">
|
|
<div class="landing-title">
|
|
<div class="">
|
|
<img src="https://media.giphy.com/media/xTiIzJSKB4l7xTouE8/giphy.gif"
|
|
alt="Hello there.">
|
|
</div>
|
|
<h1 class="text">
|
|
I'm <span class="highlight">Kristofers Solo</span>
|
|
</h1>
|
|
<h1 id="text" class="text"></h1>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|