1
0
mirror of https://github.com/Foltik/Shimapan synced 2024-12-04 19:32:20 -05:00
shimapan/public/views/home.html

26 lines
794 B
HTML
Raw Normal View History

2017-10-14 15:16:58 -04:00
<!DOCTYPE html>
<html lang="en">
<head>
2018-12-31 14:45:37 -05:00
<meta charset="UTF-8"/>
2017-10-14 15:16:58 -04:00
<title>Shimapan</title>
2018-12-31 14:45:37 -05:00
<base href="/"/>
<link rel="stylesheet" href="/css/home.css"/>
2017-10-14 15:16:58 -04:00
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet"/>
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono" rel="stylesheet"/>
2017-10-20 16:46:14 -04:00
<script src="/js/shimapan.bundle.js"></script>
2017-10-14 15:16:58 -04:00
</head>
<body ng-app="shimapan">
<div id="container">
<h1>Shimapan~</h1>
<upload-component></upload-component>
<nav>
<ul>
<li><a href="/">Shimapan</a></li>
<li><a href="/panel">Panel</a></li>
2018-12-31 18:44:59 -05:00
<li><a href="https://github.com/Foltik/shimapan">GitHub</a></li>
2017-10-14 15:16:58 -04:00
</ul>
</nav>
</div>
</body>
2019-01-02 17:20:07 -05:00
</html>