mirror of https://github.com/movim/movim
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.6 KiB
48 lines
1.6 KiB
<div id="subscribe">
|
|
<ul class="simple thick">
|
|
<li class="condensed">
|
|
<span>{$c->__('subscribe.title')}</span>
|
|
<p>{$c->__('subscribe.info')}</p>
|
|
</li>
|
|
</ul>
|
|
|
|
<ul class="thick active flex card">
|
|
{loop="$servers"}
|
|
<li
|
|
class="block condensed"
|
|
onclick="movim_redirect('{$c->route('accountnext', array($value->domain, false))}')">
|
|
<span class="icon bubble color {$value->description|stringToColor}">
|
|
{if="$value->checked"}
|
|
<i class="fa md-star-outline"></i>
|
|
{else}
|
|
{$value->domain|firstLetterCapitalize}
|
|
{/if}
|
|
</span>
|
|
<span class="info">
|
|
<img
|
|
class="flag"
|
|
title="{$value->geo_country}"
|
|
alt="{$value->geo_country}"
|
|
src="{$c->flagPath($value->geo_country)}"/>
|
|
</span>
|
|
<span>{$value->domain}</span>
|
|
<p>
|
|
{$value->description}<br />
|
|
<a target="_blank" href="{$value->url}">
|
|
{$value->url}
|
|
</a>
|
|
</p>
|
|
</li>
|
|
{/loop}
|
|
|
|
<li class="block condensed">
|
|
<span class="icon bubble color orange">
|
|
<i class="md md-add-circle-outline"></i>
|
|
</span>
|
|
<span>{$c->__('subscribe.server_question')}</span>
|
|
<p>
|
|
{$c->__('subscribe.server_contact')} • <a href="https://movim.eu/">https://movim.eu/</a>
|
|
</p>
|
|
</li>
|
|
</ul>
|
|
</div>
|