* builds with echo now instead of gin * beginning of web UI * factor out util functions
This commit is contained in:
32
view/about.html
Normal file
32
view/about.html
Normal file
@@ -0,0 +1,32 @@
|
||||
{% extends "page.html" %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<div class="col-lg-12">
|
||||
<h1>About This Site</h1>
|
||||
|
||||
<h2>⚠️ Important!</h2>
|
||||
|
||||
<p>This is a third-party site, not affiliated in any way with HN,
|
||||
provided for informational purposes only. <b>Do not</b> contact or
|
||||
hassle HN administrators about any information you learn here.
|
||||
Their site, their rules. I repeat: <b>Do not hassle or interrogate
|
||||
the HN admins about their front page.</b> <small>(<a
|
||||
href="https://news.ycombinator.com/item?id=22643777">more
|
||||
info</a>)</small> </p>
|
||||
|
||||
<h2>Why?</h2>
|
||||
|
||||
<p>I like reading stuff on the internet that is of interest to HN voters,
|
||||
even if the HN administrators think it's off topic and don't want it on
|
||||
the frontpage, which is a decision I respect. Again, their site, their
|
||||
rules.</p>
|
||||
|
||||
<h2>How?</h2>
|
||||
|
||||
<p>Go and the
|
||||
graciously provided <a href="https://github.com/HackerNews/API">HN
|
||||
API</a>.</p>
|
||||
|
||||
</div>
|
||||
{% endblock %}
|
||||
29
view/base.html
Normal file
29
view/base.html
Normal file
@@ -0,0 +1,29 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<!--
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
-->
|
||||
<title>{{ htmltitle }}</title>
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
|
||||
|
||||
<style>
|
||||
{% include "style.css" %}
|
||||
</style>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
{% block body %}
|
||||
{% endblock %}
|
||||
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
10
view/bodyfooter.html
Normal file
10
view/bodyfooter.html
Normal file
@@ -0,0 +1,10 @@
|
||||
<footer>
|
||||
<small>
|
||||
A project by <a href="https://sneak.berlin">@sneak</a>.
|
||||
|
||||
<code>{{gitrev}}</code>
|
||||
|
||||
<a href="http://git.eeqj.de/sneak/feta">source</a> (<a
|
||||
href="https://en.wikipedia.org/wiki/WTFPL">WTFPL</a>)
|
||||
</small>
|
||||
</footer>
|
||||
29
view/index.html
Normal file
29
view/index.html
Normal file
@@ -0,0 +1,29 @@
|
||||
{% extends "page.html" %}
|
||||
|
||||
{% block content %}
|
||||
<div class="col-lg-12">
|
||||
|
||||
|
||||
<h2>indexer stats</h2>
|
||||
|
||||
<table class="table table-striped table-hover">
|
||||
<thead class="thead-dark">
|
||||
<tr>
|
||||
<th scope="col">Key</th>
|
||||
<th scope="col">Value</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for stat in stats %}
|
||||
<tr>
|
||||
{{stat.key}}
|
||||
</tr>
|
||||
<tr>
|
||||
{{stat.value}}
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
{% endblock %}
|
||||
16
view/navbar.html
Normal file
16
view/navbar.html
Normal file
@@ -0,0 +1,16 @@
|
||||
<!-- Navigation -->
|
||||
<nav class="navbar navbar-expand-lg navbar-dark bg-dark static-top">
|
||||
<div class="container">
|
||||
<a class="navbar-brand" href="/">Fediverse Index</a>
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarResponsive">
|
||||
<ul class="navbar-nav ml-auto">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="https://sneak.berlin">Author</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
16
view/page.html
Normal file
16
view/page.html
Normal file
@@ -0,0 +1,16 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block body %}
|
||||
{% include "navbar.html" %}
|
||||
<!-- Page Content -->
|
||||
<div class="container" id="pagebody">
|
||||
<div class="row">
|
||||
{% block content %}
|
||||
<div class="col-lg-12 text-center">
|
||||
<h1 class="mt-5">View Not Found</h1>
|
||||
</div>
|
||||
{% endblock %}
|
||||
</div>
|
||||
</div>
|
||||
{% include "bodyfooter.html" %}
|
||||
{% endblock %}
|
||||
17
view/style.css
Normal file
17
view/style.css
Normal file
@@ -0,0 +1,17 @@
|
||||
body {
|
||||
}
|
||||
|
||||
#pagebody {
|
||||
margin-top: 4em;
|
||||
}
|
||||
|
||||
footer {
|
||||
padding-left: 1em;
|
||||
padding-top: 2em;
|
||||
padding-bottom: 0.5em;
|
||||
}
|
||||
|
||||
h1,h2,h3,h4 {
|
||||
padding-top: 1em;
|
||||
padding-bottom: 0.25em;
|
||||
}
|
||||
Reference in New Issue
Block a user