Skip to content
This repository was archived by the owner on Jan 26, 2023. It is now read-only.

Commit 5d5e75e

Browse files
author
irsol
committed
add html templates
1 parent b92289c commit 5d5e75e

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!doctype html>
2+
<title>Hello from project template server</title>
3+
4+
<h1>List of API endpoints</h1>
5+
6+
<ul>
7+
<li>
8+
<a href="{{ url_for('get_users') }}">Get list of users</a>
9+
</li>
10+
<li>
11+
<a href="{{ url_for('nice_page') }}">Show nice page</a>
12+
</li>
13+
</ul>
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<body>
4+
5+
<p>I am normal</p>
6+
<p style="color:red;">I am red</p>
7+
<p style="color:blue;">I am blue</p>
8+
<p style="font-size:36px;">I am big</p>
9+
10+
</body>
11+
</html>

0 commit comments

Comments
 (0)