This repository has been archived by the owner on Jul 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
91 lines (75 loc) · 3.73 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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!---
Copyright 2017 Yuri Faria
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!DOCTYPE html>
<html>
<head>
<title>Asura Glass</title>
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.indigo-blue.min.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="shortcun icon" href="src/img/logo.ico" type="image/x-icon">
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Asura Glass Project">
<meta name="author" content="Yuri Faria">
<meta name="reply-to" content="[email protected]">
</head>
<body>
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header">
<header class="custom-header mdl-layout__header">
<div class="mdl-layout__header-row">
<h1><span class="mdl-layout-title mdl-layout--large-screen-only">Asura Glass</span></h1>
<div class="mdl-layout-spacer"></div>
<div class="mdl-layout--large-screen-only">
<div class="mdl-textfield mdl-js-textfield">
<input class="mdl-textfield__input" type="text" id="search-input">
<label class="mdl-textfield__label" for="search-input">Search</label>
</div>
<i class="material-icons black" id="searchButton">search</i>
</div>
<div class="mdl-layout--small-screen-only">
<div class="mdl-textfield mdl-js-textfield">
<input class="mdl-textfield__input" type="text" id="search-input-small">
<label class="mdl-textfield__label" for="search-input-small">Search</label>
</div>
<i class="material-icons black" id="searchButtonSmall">search</i>
</div>
<div class="mdl-layout-spacer"></div>
<nav class="mdl-navigation mdl-layout--large-screen-only">
<a class="mdl-navigation__link" href="template/login.html" id="log-in-link">Log In</a>
<a class="mdl-navigation__link" href="template/signin.html" id="sign-in-link">Sign In</a>
<a class="mdl-navigation__link" href="template/upload.html" id="upload-link">Upload App</a>
</nav>
</div>
</header>
<div class="mdl-layout__drawer mdl-layout--small-screen-only">
<span class="mdl-layout-title">Menu</span>
<nav class="mdl-navigation mdl-typography--text-center">
<a class="mdl-navigation__link" href="template/login.html" id="log-in-link-drawer">Log In</a>
<a class="mdl-navigation__link" href="template/signin.html" id="sign-in-link-drawer">Sign In</a>
<a class="mdl-navigation__link" href="template/upload.html" id="upload-link-drawer">Upload App</a>
</nav>
</div>
<main class="mdl-layout__content mdl-typography--text-center">
<div class="mdl-grid mdl-typography--text-center" id="feed-new">
</div>
<i class="material-icons md-36" id="showMoreButton">arrow_downward</i>
</main>
</div>
<script defer src="https://code.getmdl.io/1.3.0/material.min.js"></script>
<script src="js/islogged.js" type="text/javascript"></script>
<script src="js/getappsapi.js" type="text/javascript"></script>
<script type="text/javascript" src="js/index.js"></script>
</body>
</html>