diff options
author | navanchauhan <navanchauhan@gmail.com> | 2022-05-22 11:40:12 -0600 |
---|---|---|
committer | navanchauhan <navanchauhan@gmail.com> | 2022-05-22 11:40:12 -0600 |
commit | aaf1c40d86d8382040ff08ea3ad7b54809a624ff (patch) | |
tree | 3555a2aac50757cea9dff21bd293bbc48ad80903 /templates/base.html | |
parent | 34965e2cdb026bfaf7facf5c520848ce19120251 (diff) |
added flask templates
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..3a77b53 --- /dev/null +++ b/templates/base.html @@ -0,0 +1,39 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <title>{% block title %} {% endblock %} - FlixRec</title> + <link rel="stylesheet" href="https://unpkg.com/sakura.css/css/sakura-dark.css" type="text/css"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + +</head> +<body> + <style type="text/css"> + input[type="color"], + input[type="date"], + input[type="datetime"], + input[type="datetime-local"], + input[type="email"], + input[type="month"], + input[type="number"], + input[type="password"], + input[type="search"], + input[type="tel"], + input[type="text"], + input[type="time"], + input[type="url"], + input[type="week"], + select:focus, + textarea { + font-size: 16px; + } + </style> + <nav> + <a href="{{ url_for('find_similar_title') }}">FlixRec</a> | + <a href="#">About</a> + </nav> + <hr> + <div class="content"> + {% block content %} {% endblock %} + </div> +</body>
\ No newline at end of file |