Add template master.html
This commit is contained in:
parent
b7f7812295
commit
aa414c2667
25
README.org
25
README.org
@ -128,3 +128,28 @@ INSERT INTO user VALUES (NULL, 'py@con.es', '2016');
|
|||||||
.exit
|
.exit
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
|
Future resource: *master.html*
|
||||||
|
#+BEGIN_SRC html
|
||||||
|
<!doctype html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8"/>
|
||||||
|
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"/>
|
||||||
|
<link href="https://bootswatch.com/flatly/bootstrap.min.css" rel="stylesheet">
|
||||||
|
<title>Flask-note</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<div class="page-header">
|
||||||
|
<h1 class="text-center">
|
||||||
|
<small>Flask-note</small>
|
||||||
|
</h1>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
{% block contain %}
|
||||||
|
{% endblock %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
#+END_SRC
|
||||||
|
Loading…
Reference in New Issue
Block a user