32 lines
821 B
HTML
32 lines
821 B
HTML
<!doctype html>
|
|
<html lang=en>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{{ page.title }}</title>
|
|
|
|
<meta name="viewport" content="
|
|
width=device-width,
|
|
user-scalable=no,
|
|
initial-scale=1,
|
|
minimum-scale=1,
|
|
maximum-scale=1">
|
|
|
|
<link href='//fonts.googleapis.com/css?family=Roboto:400,900' rel='stylesheet' type='text/css'>
|
|
<script type="text/javascript" src="//code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.lazy/1.7.9/jquery.lazy.min.js"></script>
|
|
<link rel="stylesheet" href="/assets/gallery.css">
|
|
</head>
|
|
<body>
|
|
|
|
<script type="text/javascript">
|
|
(function() {
|
|
$('.lazy').lazy({
|
|
effect: "fadeIn",
|
|
effectTime: 1000,
|
|
threshold: 500
|
|
});
|
|
});
|
|
</script>
|
|
|
|
{% include svg_shadow.html %}
|