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.
51 lines
1.8 KiB
51 lines
1.8 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 divided spaced">
|
|
{loop="$servers"}
|
|
<li
|
|
class="block condensed"
|
|
onclick="movim_redirect('{$c->route('accountnext', array($value->fn->text, false))}')">
|
|
<span class="icon bubble color {$value->fn->text|stringToColor}">
|
|
{if="$value->checked"}
|
|
<i class="fa md-star-outline"></i>
|
|
{else}
|
|
{$value->fn->text|firstLetterCapitalize}
|
|
{/if}
|
|
</span>
|
|
<div class="server {if="$value->checked"}star{/if}">
|
|
<span class="info">
|
|
<img
|
|
class="flag"
|
|
title="{$value->adr->country}"
|
|
alt="{$value->adr->country}"
|
|
src="{$c->flagPath($value->adr->country)}"/>
|
|
</span>
|
|
<span>{$value->fn->text}</span>
|
|
|
|
<p>
|
|
{$value->note->text}<br />
|
|
<a target="_blank" href="{$value->url->uri}">
|
|
{$value->url->uri}
|
|
</a>
|
|
</p>
|
|
</div>
|
|
</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>
|