Created
April 21, 2018 10:04
-
-
Save salayhin/a183a5b923834e4d71cdf385108a4cf3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% load staticfiles %} | |
<html> | |
<head> | |
<title>Pycamp - 2018</title> | |
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"> | |
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css"> | |
<link href='//fonts.googleapis.com/css?family=Lobster&subset=latin,latin-ext' rel='stylesheet' type='text/css'> | |
<link rel="stylesheet" href="{% static 'css/base.css' %}"> | |
</head> | |
<body> | |
<div class="container"> | |
<div class="header clearfix"> | |
<nav> | |
<ul class="nav nav-pills pull-right"> | |
<li role="presentation" class="active"><a href="/">Home</a></li> | |
</ul> | |
</nav> | |
<h3 class="text-muted"><a href="/">Py Camp 2018</a></h3> | |
</div> | |
<div class="row marketing"> | |
{% block content %} | |
{% endblock %} | |
</div> | |
<footer class="footer"> | |
<p>© 2018 Company</p> | |
</footer> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment