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
Raw Normal View History

2020-04-13 12:32:26 +01:00
2020-04-13 10:39:38 +01:00
{% extends "base.html" %}
2020-04-13 12:32:26 +01:00
{% load static %}
2020-04-13 10:39:38 +01:00
{% block title %}Homepage{% endblock %}
2020-04-13 12:32:26 +01:00
{% block main %}
<div class="homepage-jumbotron parallax-container">
2020-04-13 12:32:26 +01:00
<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">
2020-04-13 12:32:26 +01:00
<h2>Recent Content</h2>
{% include "card-list-item.html" %}
</div>
2020-04-13 10:39:38 +01:00
{% endblock%}
2020-04-13 12:32:26 +01:00
{% block extrascripts %}
<script>
document.addEventListener('DOMContentLoaded', function() {
var elems = document.querySelectorAll('.parallax');
var instances = M.Parallax.init(elems, {});
});
</script>
{% endblock %}