mirror of
https://github.com/privacyguides/privacyguides.org.git
synced 2024-10-01 01:35:57 -04:00
29658d1d98
Signed-off-by: Daniel Gray <dngray@privacyguides.org>
26 lines
1.1 KiB
HTML
26 lines
1.1 KiB
HTML
{% extends "schema.html" %}
|
|
{% block extrahead %}
|
|
<link rel="stylesheet" href="{{ 'assets/stylesheets/home.css?v=3.3.0' | url }}">
|
|
{{ super() }}
|
|
{% endblock %}
|
|
{% block tabs %}
|
|
{{ super() }}
|
|
<style>.md-content > .md-typeset h1{visibility:hidden;font-size:0;}.md-button{margin-top:.5rem;}</style>
|
|
<section class="mdx-container">
|
|
<div class="md-grid md-typeset">
|
|
<div class="mdx-hero">
|
|
<div class="mdx-hero__content">
|
|
<h1>保护你的在线隐私</h1>
|
|
<p>大规模组织正在监控你的在线活动。 Privacy Guides是您保护自己在线隐私的实用资源。</p>
|
|
<a href="{% if config.extra.offline %}basics/threat-modeling.html{% else %}kb/{% endif %}" title="你隐私之旅的第一步" class="md-button md-button--primary">
|
|
开始你的隐私之旅
|
|
</a>
|
|
<a href="{% if config.extra.offline %}tools.html{% else %}tools/{% endif %}" title="推荐的隐私工具、服务和知识" class="md-button">
|
|
推荐工具
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{% endblock %}
|