home template

Solutions on MaxInterview for home template by the best coders in the world

showing results for - "home template"
Lola
13 Sep 2017
1{% extends 'base.html' %}
2
3{% block title %}
4<title>Homepage</title>
5{% endblock %}
6
7{% block body %}
8<div class="jumbotron">
9    <div class="container">
10        <h1 class="display-3 font-weight-lighter">Homepage</h1>
11        <p class="lead">Lorem ipsum dolor sit amet.</p>
12        <button class="btn btn-outline-primary">Sign Up</button>
13    </div>
14</div>
15{% endblock %}
similar questions
base template