mirror of
https://github.com/privacyguides/privacyguides.org.git
synced 2024-10-01 01:35:57 -04:00
0f5717c63b
Thunderbird is no longer developed by Mozilla. https://blog.mozilla.org/thunderbird/2017/05/thunderbirds-future-home/ github.com/thundernest does not contain source code of Thunderbird client > comm-central is the main Thunderbird repository. > Thundernest contains the code for Thunderbird.net (this site), as well as the Thunderbird web server setup scripts. from https://www.thunderbird.net/en-US/get-involved/ In _includes/cardv2.html add `source`, because git is not the only version control available (there is Mercurial, Subversion, CVS)
50 lines
2.5 KiB
HTML
50 lines
2.5 KiB
HTML
<div class="card">
|
|
<div class="card-header text-white bg-secondary">
|
|
<h3 class="h5">{{include.title}}</h3>
|
|
</div>
|
|
<div class="card-body">
|
|
<p class="card-text">
|
|
<img src="{{include.image}}" height="120" width="120" class="panel-pic" alt="{{include.title}}">
|
|
{{include.description}}
|
|
</p>
|
|
<a href="{{include.website}}" class="btn btn-primary"><i class="fas fa-external-link-alt fa-fw"></i> Website</a>
|
|
{% if include.forum %}
|
|
<a href="{{include.forum}}" class="btn btn-success"><i class="fab fa-discourse fa-fw"></i> Forum</a>
|
|
{% endif %}
|
|
{% if include.tor %}
|
|
<a class="mb-1" data-toggle="tooltip" data-placement="bottom" data-original-title="Requires specific software to access: torproject.org" href="{{include.tor}}"><img alt="Tor" src="/assets/img/layout/tor.png" width="35" height="35"></a>
|
|
{% endif %}
|
|
|
|
<div class="float-right">
|
|
{% if include.windows %}<i class="fab fa-windows fa-2x fa-fw"></i>{% endif %}
|
|
{% if include.mac %}<i class="fab fa-apple fa-2x fa-fw"></i>{% endif %}
|
|
{% if include.linux %}<i class="fab fa-linux fa-2x fa-fw"></i>{% endif %}
|
|
{% if include.bsd %}<i class="fab fa-freebsd fa-2x fa-fw"></i>{% endif %}
|
|
|
|
{% if include.firefox %}<i class="fab fa-firefox fa-2x fa-fw"></i>{% endif %}
|
|
{% if include.chrome %}<i class="fab fa-chrome fa-2x fa-fw"></i>{% endif %}
|
|
{% if include.safari %}<i class="fab fa-safari fa-2x fa-fw"></i>{% endif %}
|
|
{% if include.opera %}<i class="fab fa-opera fa-2x fa-fw"></i>{% endif %}
|
|
{% if include.edge %}<i class="fab fa-edge fa-2x fa-fw"></i>{% endif %}
|
|
|
|
{% if include.android %}<i class="fab fa-android fa-2x fa-fw"></i>{% endif %}
|
|
{% if include.ios %}<i class="fab fa-app-store-ios fa-2x fa-fw"></i>{% endif %}
|
|
{% if include.fire %}<i class="fas fa-fire fa-2x fa-fw"></i>{% endif %}
|
|
|
|
{% if include.web %}<i class="fas fa-desktop fa-2x fa-fw"></i>{% endif %}
|
|
|
|
{{include.icon1}}
|
|
{{include.icon2}}
|
|
{{include.icon3}}
|
|
|
|
{% if include.github %}<a href="{{include.github}}"><i class="fab fa-github fa-2x fa-fw"></i></a>{% endif %}
|
|
{% if include.gitlab %}<a href="{{include.gitlab}}"><i class="fab fa-gitlab fa-2x fa-fw"></i></a>{% endif %}
|
|
{% if include.git %}<a href="{{include.git}}"><i class="fab fa-git-square fa-2x fa-fw"></i></a>{% endif %}
|
|
{% if include.source %}<a href="{{include.source}}"><i class="fas fa-code-branch fa-2x fa-fw"></i></a>{% endif %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
<br>
|