Skip to content

Instantly share code, notes, and snippets.

@emberian
Created May 25, 2012 00:31
Show Gist options
  • Save emberian/2785074 to your computer and use it in GitHub Desktop.
Save emberian/2785074 to your computer and use it in GitHub Desktop.
{% block css %}
{{ super() }}
<link rel="stylesheet" href="css/index.css">
{% endblock %}
<h1>Fly them high</h1>
<form>
<input type="text" placeholder="Username" name="username">
<input type="password" placeholder="Password"
name="password">
<input type="submit" value="Login">
</form>
{% extends 'master.jinja2' %}
{% block content %}
{% if session.authenticated %}
{% include 'uploader.jinja2' %}
{% else %}
{% include 'login.jinja2' %}
{% endif %}
{% endblock %}
<!doctype html>
<html>
<head>
<meta charset="utf-8">
{% block css %}{% endblock %}
{% block javascript %}{% endblock %}
</head>
<body>
{% block content %}{% endblock %}
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment