update templates
This commit is contained in:
parent
74929a753e
commit
f27fb84200
5 changed files with 84 additions and 18 deletions
|
@ -1,11 +1,22 @@
|
|||
<footer>
|
||||
<div class="row">
|
||||
<div class="large-12 columns">
|
||||
<ul class="inline-list">
|
||||
<li>GoCloud{# <img src="{{ url_for('static', filename='images/logo/gocloud-logo-24.png') }}" border="0" />#}</li>
|
||||
<li>© Все права защищены.</li>
|
||||
<div class="large-4 columns">
|
||||
<p>
|
||||
GoCloud © Все права защищены.
|
||||
</p>
|
||||
</div>
|
||||
<div class="large-4 columns">
|
||||
<p><b>Документы</b></p>
|
||||
<ul>
|
||||
<li><a href="{{ url_for('documents.view', document_name='politica_konfidencialnosti') }}">Политика конфиденциальности</a></li>
|
||||
<li><a href="{{ url_for('documents.view', document_name='pravila_ispolzovaniya') }}">Условия использования</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="large-4 columns">
|
||||
<p><b>Поддержка</b></p>
|
||||
<ul>
|
||||
<li><a href="{{ url_for('support.index') }}">Поддержка</a></li>
|
||||
<li><a href="#">База знаний</a></li>
|
||||
<li><a href="{{ url_for('kb.index') }}">База знаний</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
|
11
app/templates/default/documents/index.html
Normal file
11
app/templates/default/documents/index.html
Normal file
|
@ -0,0 +1,11 @@
|
|||
{% extends "default/_layout.html" %}
|
||||
|
||||
{% block title %}Документы{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="row">
|
||||
<div class="large-12 columns">
|
||||
{% filter markdown %}{{ doc_markdown }}{% endfilter %}
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
46
app/templates/default/homepage/index.en.html
Normal file
46
app/templates/default/homepage/index.en.html
Normal file
|
@ -0,0 +1,46 @@
|
|||
{% extends "default/_layout.html" %}
|
||||
|
||||
{% block title %}GoCloud{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div id="banner">
|
||||
<div class="row">
|
||||
<div class="large-12 columns">
|
||||
<p id="slogan">Cloud hosting for developers</p>
|
||||
<p id="sub">Linux containers from $1 per month</p>
|
||||
<p>
|
||||
<a href="{{ url_for('account.registration') }}" class="button alert">Create container</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="large-4 columns">
|
||||
<h2>Features</h2>
|
||||
<ul>
|
||||
<li>Containers with Ubuntu Linux</li>
|
||||
<li>Pay only for the resources used</li>
|
||||
<li>Автоматическое доабвление SSH-ключа при создании контейнера</li>
|
||||
<li>Public IP address</li>
|
||||
<li>Unlimited network traffic</li>
|
||||
<li>Firewall</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="large-4 columns">
|
||||
<h2>Тарификация</h2>
|
||||
<ul>
|
||||
<li>Включено 2 Гб дискового пространства</li>
|
||||
<li>Дисковое пространство - 100 рублей в месяц за каждые 10Гб</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="large-4 columns">
|
||||
<h2>Способы оплаты</h2>
|
||||
<ul>
|
||||
<li>Visa и MasterCard</li>
|
||||
<li>WebMoney</li>
|
||||
<li>Яндекс.Деньги</li>
|
||||
<li>Robokassa</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
|
@ -1,13 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title></title>
|
||||
</head>
|
||||
<body>
|
||||
{% filter markdown %}
|
||||
Your Markdown
|
||||
=============
|
||||
{% endfilter %}
|
||||
</body>
|
||||
</html>
|
11
app/templates/default/kb/index.html
Normal file
11
app/templates/default/kb/index.html
Normal file
|
@ -0,0 +1,11 @@
|
|||
{% extends "default/_layout.html" %}
|
||||
|
||||
{% block title %}База знаний{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="row">
|
||||
<div class="large-12 columns">
|
||||
{% filter markdown %}{{ kb_markdown }}{% endfilter %}
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
Loading…
Add table
Reference in a new issue