pogo/assets/web/admin.html
gmemstr 09f8ce44df Starting work on Vue.js-based admin interface
Depending on my experience may port primary frontend to Vue.js as well. Really bad but I hope I can improve it with time, still learning Vue.js :)
2017-10-06 12:49:11 -07:00

30 lines
663 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Pogo Publish</title>
<link rel="stylesheet" href="/assets/styles.css">
</head>
<body>
<div class="container">
<div id="app">
<a href="#publish">Publish</a>
<a href="#customcss">Theme</a>
<h1>{{ header }}</h1>
<h3>{{ current_page }}</h3>
<div v-if="page == 'publish'">
<episode-publish-form></episode-publish-form>
</div>
<div v-if="page == 'customcss'">
<custom-css></custom-css>
</div>
</div>
<footer>
<p>Pogo licensed under the GPLv3</p>
</footer>
</div>
<script src="/assets/vue.js"></script>
<script src="/assets/app.js"></script>
</body>
</html>