-
Notifications
You must be signed in to change notification settings - Fork 25
/
index.html
46 lines (45 loc) · 1.62 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
---
---
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ site.name }}</title>
<style>
:root {
--column: {{ site.column }};
--column-gap: {{ site.column_gap }};
--row-gap: {{ site.row_gap }};
--frame-padding: {{ site.frame_padding }};
--column-small: {{ site.small_screen.column }};
--column-gap-small: {{ site.small_screen.column_gap }};
--row-gap-smal: {{ site.small_screen.row_gap }};
}
</style>
<link rel="stylesheet" href="{{ "/assets/style.css" | prepend: site.baseurl }}">
<SCRIPT TYPE="text/javascript">
//Disable right click script
//visit http://www.rainbow.arch.scriptmania.com/scripts/
var message="Sorry, right-click has been disabled";
///////////////////////////////////
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers) {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else {document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
document.oncontextmenu=new Function("return false")
</SCRIPT>
</head>
<body>
{%- include header.html -%}
<div class="gallary">
<h1>{{ site.name }}</h1>
{%- assign albums = site.data.config -%}
{%- include album.html -%}
</div>
{%- include footer.html -%}
{%- include swipe.html -%}
</body>
</html>