aboutsummaryrefslogtreecommitdiff
path: root/src/templates/short.html
blob: fac811c2446c9b7061a1190e269a9dc7cf9d4448 (plain)
1
2
3
4
5
6
7
8
9
10
11
{% extends "templates/partials/master.html" %}
{% block content %}
<h1>{{ $req.Title }}</h1>
<p><a href="{{ $req.Url }}">{{ $req.Url }}</a></p>
<p>
{% let created = req.Created.format("yyyy-MM-dd") %}
{% let expires = req.Expires.format("yyyy-MM-dd") %}
Created on : {{ $created }}<br>
Expires on : {{ $expires }}
</p>
{% endblock %}