community/templates/onion-services.html

64 lines
2.7 KiB
HTML
Raw Normal View History

2019-04-10 14:24:46 +00:00
<div class="container py-5">
<div class="row py-5">
2019-06-12 09:39:47 +00:00
<div class="col-lg-7">
2019-04-10 14:24:46 +00:00
{{ this.body }}
</div>
2019-06-12 09:39:47 +00:00
<div class="col-lg-5">
<img src="/static/images/home/png/{{ this.section_id }}.png" class="img-fluid" alt="{{ _(this.section) }}" />
2019-04-10 14:24:46 +00:00
</div>
</div>
<div class="row">
2019-04-10 14:24:46 +00:00
{% for child in this.children|sort(attribute='key') %}
<div class="col-sm-6 col-md-6 col-sm-12 col-xl-6 py-3">
<div class="card h-100">
2019-04-10 14:24:46 +00:00
<div class="card-body">
<div class="card-body">
<h4 class="card-title text-primary">
<a href="{{ child.path|url(alt=this.alt) }}">{{ _(child.title) }}</a>
</h4>
<p class="card-text">{{ _(child.subtitle) }}</p>
</div>
2019-04-10 14:24:46 +00:00
</div>
</div>
</div>
{% endfor %}
</div>
<div class="row py-5 text-center mx-auto">
<h2 class="display-4 text-primary text-center mx-auto">{{ _('Onionize any website') }}</h2>
<p class="text-center">
{{ _('There\'s a toolkit that lets you take any existing website and host it as a .onion site. You would want do this because .onion sites are more secure than just regular sites. We show you how to use this toolkit and onionize a site.') }}
2019-04-10 14:24:46 +00:00
</p>
<a class="btn btn-lg btn-outline-primary mx-auto my-3" href="https://github.com/alecmuffett/eotk">
{{ _('Check out the code') }}<i class="ml-3 pt-2 fas fa-arrow-right"></i>
</a>
2019-04-10 14:24:46 +00:00
</div>
2019-06-19 14:59:19 +00:00
<div class="row py-5 text-center mx-auto">
<h2 class="display-4 text-primary text-center mx-auto">{{ _('Featured .onion sites') }}</h2>
</div>
<div class="row mx-auto">
{% for id, item in bag('onions').items() %}
<div class="col-4">
<div class="card h-50 border-0">
{% if id=='tor' %}
<img class="card-img-top h-100 w-25 mx-auto d-block" src="{{ item.image|asseturl }}">
{% else %}
<img class="card-img-top mx-auto d-block" src="{{ item.image|asseturl }}">
{% endif %}
<div class="card-body">
<p class="card-text text-primary text-center"><a href="{{ item.link }}">{{ item.link }}</a></p>
</div>
</div>
</div>
{% endfor %}
</div>
<div class="row py-5 text-center mx-auto">
<h2 class="display-4 text-primary text-center mx-auto my-3">{{ _('Learn More') }}</h2>
<p class="text-center">
{{ _('Are you interested in learning more about onion services? Join our tor-onions mailing list to speak with other onion service operators.')}}
</p>
<a class="btn btn-lg btn-outline-primary mx-auto my-3" href="https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-onions">
{{ _('Tor Onions mailing list') }}<i class="ml-3 pt-2 fas fa-arrow-right"></i>
</a>
2019-06-19 14:59:19 +00:00
</div>
</div>