Skip to content

Instantly share code, notes, and snippets.

@salayhin
Created April 21, 2018 10:04
Show Gist options
  • Save salayhin/a183a5b923834e4d71cdf385108a4cf3 to your computer and use it in GitHub Desktop.
Save salayhin/a183a5b923834e4d71cdf385108a4cf3 to your computer and use it in GitHub Desktop.
{% 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>&copy; 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