anna-dan-wedding-site/bigday/templates/base.html

57 lines
1.8 KiB
HTML
Raw Normal View History

2019-08-06 23:51:28 +00:00
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Anna & Dan's Big Day!</title>
<!-- CSS -->
{% load static %}
<link rel="stylesheet" type="text/css" href="{% static 'css/bootstrap.min.css' %}">
<link rel="stylesheet" type="text/css" href="{% static 'css/all.css' %}">
<link rel="stylesheet" type="text/css" href="{% static 'css/animate.css' %}">
<link rel="stylesheet" type="text/css" href="{% static 'css/style.css' %}">
<link rel="stylesheet" type="text/css" href="{% static 'css/media-queries.css' %}">
</head>
<body>
{%block page-content%}
{%endblock%}
<!-- Footer -->
<footer>
<div class="container">
<div class="row">
<p>We are so excited to share our big day with all of you! If you have any problems using this website, please contact Vicky Steeves at <a href="mailto:victoriaisteeves@gmail.com">victoriaisteeves@gmail.com</a></p>
</div>
<div class="row">
<div class="col footer-bottom">
<a class="scroll-link" href="#home"><i class="fas fa-chevron-up"></i></a>
</div>
</div>
</div>
</footer>
<!-- Javascript -->
<script src="{% static 'js/jquery-3.2.1.min.js' %}"></script>
<script src="{% static 'js/jquery-migrate-3.0.0.min.js' %}"></script>
<script src="{% static 'js/popper.min.js' %}"></script>
<script src="{% static 'js/bootstrap.min.js' %}"></script>
<script src="{% static 'js/jquery.backstretch.min.js' %}"></script>
<script src="{% static 'js/wow.min.js' %}"></script>
<script src="{% static 'js/retina-1.1.0.min.js' %}"></script>
<script src="{% static 'js/waypoints.min.js' %}"></script>
<script src="{% static 'js/scripts.js' %}"></script>
</body>
</html>