mirror of
https://github.com/safing/web
synced 2025-04-16 17:09:09 +00:00
Remove the very old roadmap
This commit is contained in:
parent
9db49ae261
commit
f67d13d349
2 changed files with 0 additions and 98 deletions
|
@ -1,55 +0,0 @@
|
|||
elements:
|
||||
- time: 2016
|
||||
heading: Finalizing The Concept
|
||||
body: Think. Discuss. Write. Repeat
|
||||
icon: gears # font awesome icon
|
||||
funding_status: null
|
||||
- time: 2017
|
||||
heading: "Portmaster: Get back in control!"
|
||||
body: Decide for yourself which applications share your data
|
||||
icon: code
|
||||
funding_status: 2
|
||||
- time: Q2 2018
|
||||
heading: Release the first version
|
||||
body: "First release, finally explore the power of Safing!"
|
||||
icon: gift
|
||||
funding_status: null
|
||||
- time: 2018
|
||||
heading: "Gate17: Private Internet Reimagined"
|
||||
body: Stop sharing your Internet activities. What you do online is private.
|
||||
icon: briefcase
|
||||
funding_status: 1
|
||||
- time: 2018
|
||||
heading: Stamp Community
|
||||
body: The go-to place to share information about websites and Internet entities.
|
||||
icon: tag
|
||||
funding_status: 1
|
||||
|
||||
drafts:
|
||||
- time: 2019
|
||||
heading: "Safing ❤️ Mobile"
|
||||
body: We will bring the power and convenience of Safing to mobile devices.
|
||||
icon: mobile
|
||||
funding_status: 0
|
||||
- time: 2020
|
||||
heading: Safing Apps
|
||||
body: "A framework for apps that feel like they use the cloud, but don't. Stop giving your private data to strangers."
|
||||
icon: calendar
|
||||
funding_status: 0
|
||||
- time: 2021
|
||||
heading: Truly Secure Communication
|
||||
body: We will add messaging capabilities to Safing. Full privacy, full anonymity, no metadata.
|
||||
icon: comments
|
||||
funding_status: 0
|
||||
|
||||
config:
|
||||
funding:
|
||||
0:
|
||||
color_class: "danger"
|
||||
text: "[FUNDING NEEDED]"
|
||||
1:
|
||||
color_class: "warning"
|
||||
text: "[FUNDING IN PROGRESS]"
|
||||
2:
|
||||
color_class: "primary"
|
||||
text: "[FUNDED]"
|
|
@ -1,43 +0,0 @@
|
|||
---
|
||||
layout: page
|
||||
title: roadmap
|
||||
heading: Roadmap
|
||||
subheading: "What we've done and plan to do."
|
||||
---
|
||||
|
||||
<span id="roadmap">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<ul class="timeline">
|
||||
{% for element in site.data.roadmap.elements %}
|
||||
{% assign modulo = forloop.index | modulo: 2 %}{% comment %}0 = even, 1 = odd{% endcomment %}
|
||||
<li{% if modulo == 0 %} class="timeline-inverted"{% endif %}>
|
||||
<div class="timeline-icon">
|
||||
<i class="fa fa-{{ element.icon }} text-primary"></i>
|
||||
</div>
|
||||
<div class="timeline-panel">
|
||||
<div class="timeline-heading">
|
||||
<h4>{{ element.time }}</h4>
|
||||
<h4 class="color-primary-important">{{ element.heading }}</h4>
|
||||
</div>
|
||||
<div class="timeline-body">
|
||||
<p class="text-muted">{{ element.body }}</p>
|
||||
{% if element.funding_status %}
|
||||
{% assign config = site.data.roadmap.config.funding[element.funding_status] %}
|
||||
<p class="text-{{ config.color_class }}">{{ config.text }}</p>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
{% endfor %}
|
||||
<li class="timeline-inverted">
|
||||
<div class="timeline-icon">
|
||||
<i class="fa fa-ellipsis-h text-primary"></i>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</span>
|
Loading…
Add table
Reference in a new issue