1
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
website-2020-spike/templates/homepage.html

34 lines
741 B
HTML

{% extends "base.html" %}
{% load static %}
{% block title %}Homepage{% endblock %}
{% block main %}
<div class="homepage-jumbotron parallax-container">
<div class="parallax">
<img src="{% static 'img/header.jpg' %}" />
</div>
<h1>Jake Howard</h1>
<p class="flow-text">Part Developer. Part SysAdmin. Part InfoSec. All Nerd!</p>
</div>
<div class="container homepage-recent-content">
<h2>Recent Content</h2>
{% include "card-list-item.html" %}
</div>
{% endblock%}
{% block extrascripts %}
<script>
document.addEventListener('DOMContentLoaded', function() {
var elems = document.querySelectorAll('.parallax');
var instances = M.Parallax.init(elems, {});
});
</script>
{% endblock %}