From 9297781c79dbfe68a817474d0395001fd9746770 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yaroslav=20de=20la=20Pe=C3=B1a=20Smirnov?= <yps@yaroslavps.com> Date: Thu, 16 Dec 2021 02:04:43 +0300 Subject: Added basic builtin templates and css --- assets/templates/base.html | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 assets/templates/base.html (limited to 'assets/templates/base.html') diff --git a/assets/templates/base.html b/assets/templates/base.html new file mode 100644 index 0000000..1f2d8dc --- /dev/null +++ b/assets/templates/base.html @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8"> + <meta content="width=device-width, initial-scale=1" name="viewport"> + <title> + {% block title %} + A photo gallery by Yaroslav de la Peña Smirnov + {% endblock %} + </title> + <link rel="stylesheet" href="{{ index }}/css/gallery.css"> + </head> + <body> + {% block content %} + {% endblock %} + </body> +</html> -- cgit v1.2.3