You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
{% extends "base.html" %}
|
|
|
|
{% block title %}Index Page{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Hello Wolrd</h1>
|
|
|
|
<p class="special">Hello</p>
|
|
|
|
<a href="#" class="btn btn-primary">Button Text</a>
|
|
<img src="/img/logo.png" alt="Text"/>
|
|
|
|
<script src="/js/hello.js"></script>
|
|
|
|
{% endblock %}
|