console/SWSCloudWeb/templates/gocloud2016/pages/pricing.html
2016-10-17 02:10:57 +03:00

83 lines
2.7 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "gocloud2016/layouts/default.html" %}
{% block content %}
<div class="row">
<div class="large-12 columns">
<h2>Цены</h2>
</div>
</div>
<div class="row">
<div class="large-12 columns">
<h3>Виртуальные сервера</h3>
<table>
<thead>
<tr>
<th>&nbsp;</th>
<th>Процессор</th>
<th>Память</th>
<th>Диск</th>
<th>Цена</th>
</tr>
</thead>
<tbody>
<tr>
<td>G1</td>
<td>1</td>
<td>1 Гб</td>
<td>20 Гб</td>
<td>590 руб./мес.</td>
</tr>
<tr>
<td>G2</td>
<td>2</td>
<td>2 Гб</td>
<td>30 Гб</td>
<td>1080 руб./мес.</td>
</tr>
<tr>
<td>G4</td>
<td>2</td>
<td>4 Гб</td>
<td>50 Гб</td>
<td>2050 руб./мес.</td>
</tr>
<tr>
<td>G8</td>
<td>4</td>
<td>8 Гб</td>
<td>80 Гб</td>
<td>3900 руб./мес.</td>
</tr>
</tbody>
</table>
<!-- h3>DNS</h3>
<table>
<thead>
<tr>
<th>&nbsp;</th>
<th>Записей</th>
<th>Запросов</th>
<th>Слоёв</th>
<th>Цена</th>
</tr>
</thead>
<tbody>
<tr>
<td>Стандартный</td>
<td>&infin;</td>
<td>&infin;</td>
<td>1</td>
<td>Бесплатно</td>
</tr>
<tr>
<td>Гео</td>
<td>&infin;</td>
<td>&infin;</td>
<td>10</td>
<td>250 руб./мес.</td>
</tr>
</tbody>
</table -->
</div>
</div>
{% endblock %}