-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
77 lines (69 loc) · 2.79 KB
/
about.html
File metadata and controls
77 lines (69 loc) · 2.79 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta property="og:title" content="{{.Result.Title}} - Stagram" />
<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no">
<title>{{.Result.Title}} - Stagram</title>
<link rel="shortcut icon" href="/static/favicon.ico">
<link rel="stylesheet" type="text/css" href="/static/css/reset.css" media="all" />
<link rel="stylesheet" type="text/css" href="/static/css/transitions.css" media="all" />
<link rel="stylesheet" type="text/css" href="/static/css/header.css" media="all" />
<link rel="stylesheet" type="text/css" href="/static/css/style.css" media="all" />
<script src="/static/js/jquery.min.js"></script>
<script src="/static/js/jquery.collagePlus.js"></script>
<script src="/static/js/jquery.removeWhitespace.js"></script>
<script src="/static/js/jquery.collageCaption.js"></script>
<script src="/static/js/script.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-56717919-6', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<header class="top-bar">
<div class="navBtn">
<button class="navIcon">
<span class="iconLayer"></span>
</button>
</div>
<div class="menu menuOff">
<ul>
{{if .Result.IsLoggedIn }}
<li><a href="/feed">Feed</a></li>
<li><a href="/me">Me</a></li>
<li><a href="/like">Like</a></li>
<li><a href="/">Popular</a></li>
<li><a href="/logout">Logout</a></li>
{{else}}
<li><a href="/">Popular</a></li>
<li><a href="/oauth/authorize">Login with Instagram</a></li>
{{end}}
<li><a href="/about">About</a></li>
</ul>
</div>
<div id="wrapper">
<div id="page-title">Stagram</div>
</div>
</header>
<div id="contents">
<div style="margin-top: 100px; text-align: center;">
<a href="https://github.com/stagram" target="_blank">
<img src="/static/img/github.png" class="github-image">
</a>
<br/>
<a href="https://itunes.apple.com/jp/app/stagram/id488147065?mt=8" target="_blank">
<img src="/static/img/appstore.png" class="appstore-image">
</a>
<a href="https://play.google.com/store/apps/details?id=at.dongri.stagram" target="_blank">
<img src="/static/img/playstore.png" class="playstore-image">
</a>
</div>
</div>
<script src="https://dongrity.appspot.com/t.js" type="text/javascript"></script>
</body>
</html>