diff options
| author | Yaroslav de la Peña Smirnov <yps@yaroslavps.com> | 2021-12-16 02:04:43 +0300 | 
|---|---|---|
| committer | Yaroslav de la Peña Smirnov <yps@yaroslavps.com> | 2021-12-16 02:04:43 +0300 | 
| commit | 9297781c79dbfe68a817474d0395001fd9746770 (patch) | |
| tree | a1ef30b48f1c1c453ba37f9a2126fa58550f4b29 /assets/templates/base.html | |
| parent | 0e2f57884b494aa676686db132994a3df2b73c70 (diff) | |
| download | revela-9297781c79dbfe68a817474d0395001fd9746770.tar.gz revela-9297781c79dbfe68a817474d0395001fd9746770.zip | |
Added basic builtin templates and css
Diffstat (limited to 'assets/templates/base.html')
| -rw-r--r-- | assets/templates/base.html | 17 | 
1 files changed, 17 insertions, 0 deletions
| 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> | 
