Skip to content
Permalink
3339c012d1
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
53 lines (38 sloc) 1.22 KB
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Python Requests</title>
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="{{ url_for('static' , filename='materialize/css/materialize.min.css')}}">
<style>
nav a {
text-transform: uppercase;
}
</style>
</head>
<body>
<div class="container">
{# We Cannot have Include and Blocks #}
<nav class="nav-extended blue-grey">
<div class="nav-wrapper blue-grey lighten-1">
<a href="{{ url_for('main') }}" class="brand-logo right">Requests</a>
<ul id="nav-mobile" class="hide-on-med-and-down">
<li><a href="{{ url_for('requestHeaders') }}">Requests</a></li>
<li><a href="{{ url_for('hiddenState')}}">Sessions</a></li>
</ul>
</div>
{% block navTabs %}
{% endblock navTabs %}
</nav>
<div class="row">
{% block content %}
{% endblock content %}
</div>
</div>
<!-- Compiled and minified JavaScript -->
<script src="{{ url_for('static' , filename='materialize/js/materialize.min.js')}}"></script>
</body>
</html>