404.html
Aug 16 2016- POSTED BY projecth
{% extends “layout.html” %} {% block content %} <h1>404</h1> <p>Wow, sorry, that page doesn’t exist.</p> <p><a href=”{{ url_for(‘index’) }}”>Try again</a></p> […]
Read More{% extends “stream.html” %} {% block content %} <div class=”row”> <div class=”grid-25″> <h1>{{ user.username }}</h1> </div> […]
Read More{% extends “layout.html” %} {% block content %} {% for post in stream %} <article> <h2> <a […]
Read More{% macro render_field(field) %} <div class=”field”> {% if field.errors %} {% for error in field.errors %} […]
Read More{% extends “layout.html” %} {% from ‘macros.html’ import render_field %} {% block content %} <form method=”POST” action=”” class=”form”> {{ […]
Read More{% extends “layout.html” %} {% from ‘macros.html’ import render_field %} {% block content %} <form method=”POST” action=”” class=”form”> {{ […]
Read More<!DOCTYPE html> <html class=”no-js”> <head> <meta charset=”utf-8″> <meta http-equiv=”X-UA-Compatible” content=”IE=edge,chrome=1″> <title>{% block title %}TwoCans{% endblock %}</title> […]
Read More