Skip to content

Commit

Permalink
fix template title base for test app
Browse files Browse the repository at this point in the history
refs #113
  • Loading branch information
guruofgentoo committed Feb 2, 2021
1 parent 8a41f03 commit c3fcc82
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion keg_auth_ta/templates/base.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
{% extends "bootstrap/base.html" %}
{% block title %}Keg Auth Demo{% endblock %}

{%- block head %}
<title>{% block title %}{{title|default}}{% endblock title %} | Keg Auth Demo</title>

{%- block metas %}
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{%- endblock metas %}

{%- block styles %}
<!-- Bootstrap -->
<link href="{{bootstrap_find_resource('css/bootstrap.css', cdn='bootstrap')}}" rel="stylesheet">
{%- endblock styles %}
{%- endblock head %}

{% block content %}
<h1>Hello World from Keg Auth</h1>
Expand Down

0 comments on commit c3fcc82

Please sign in to comment.