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.
20 lines
494 B
20 lines
494 B
<!DOCTYPE html>
|
|
<html lang='en'>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>flask-demo-area</title>
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='stylesheet.css')}}">
|
|
</head>
|
|
<body>
|
|
<div id="nav">
|
|
<a href="/"><button>index</button></a>
|
|
<a href="/search"><button>search</button></a>
|
|
<a href="/words"><button>words</button></a>
|
|
<a href="/poetry"><button>poetry</button></a>
|
|
</div>
|
|
<div id="main">
|
|
{% block main %}
|
|
{% endblock %}
|
|
</div>
|
|
</body>
|
|
</html>
|