19 lines
537 B
HTML
19 lines
537 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{{section.title}}{% endblock title %}
|
|
|
|
{% block content %}
|
|
<div style="background-color:lightgray;width:100%;height:20vh;display:flex;justify-content:center;align-items:center;">
|
|
<div style="text-align:center;">
|
|
<h1 id="hero-title" style="font-weight:bold;padding:0;margin:0;">Protomask</h1>
|
|
<span style="font-size: 1.25em;">Fast & reliable user space NAT64</span>
|
|
</div>
|
|
</div>
|
|
|
|
<br>
|
|
|
|
<div class="container">
|
|
{{section.content|safe}}
|
|
</div>
|
|
|
|
{% endblock content %} |