This commit is contained in:
root
2017-07-24 15:49:07 +02:00
parent 834aae61c2
commit 5f21367622
9 changed files with 305 additions and 1 deletions

View File

@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<head>
<title>Triton - Home</title>
<link rel="stylesheet" href="static/bootstrap/css/bootstrap.min.css"/>
<link rel="stylesheet" href="static/font-awesome/css/font-awesome.min.css"/>
<script src="static/bootstrap/js/bootstrap.min.js" ></script>
</head>
<body style="width:100%">
<div class="container">
<div class="row">
<div class="col-12">
<div class="jumbotron" style="background-image: url('static/triton5.jpg')"> <h1 class="display-3 text-primary">FET Webservices - triton.fet.at</h1><hr>
<p>Dieser Server ist der Proxy Server und Host für alle FET Web Services </p>
</div>
</div>
</div>
{% block main %}
{% endblock %}
</div>
</body>
</html>
<div> sdf</div>

View File

@@ -0,0 +1,28 @@
{% extends "layout.html" %}
{% block main %}
{% for services_row in services | batch (3) %}
<div class="row">
{% for s in services_row %}
<div class="col-4">
<a href="{{s.url}}">
<div class="media">
<div class=" d-flex mr-3"><i class="fa {% if not s.icon %}fa-globe{% else %} {{s.icon}} {%endif %} fa-2x"></i></div>
<div class="media-body">
<h5 class="mt-0">{{s.name}}</h5>
<p class="text-muted">{{s.desc}}</p>
</div>
</div>
</a>
</div>
{% endfor %}
</div>
{% endfor %}
<div class="row">
<div class="col-12">
<a href="reload.html">
<i class="fa fa-refresh"></i> reload services</a>
</div>
</div>
{% endblock %}