home.html 523 B

1234567891011121314151617
  1. {% extends "base.html" %}
  2. {% block js %}
  3. {% endblock %}
  4. {% block main %}
  5. <div class="row-fluid">
  6. <div class="span10 offset1 well well-large">
  7. <h1 class="text-center">You did it!</h1>
  8. <h3 class="text-center">This text is in <code>templates/home.html</code>, now build something!</h3>
  9. </div>
  10. <div class="span10 offset1">
  11. <h5 class="text-center muted">Help? <a class="muted" href="http://github.com/nickhs/flask_skeleton">github.com/nickhs/flask_skeleton</a></h5>
  12. </div>
  13. {% endblock %}