mirror of
https://github.com/safing/web
synced 2025-04-17 01:19:08 +00:00
Merge pull request #64 from safing/feature/download-page-2020
Download page 2020
This commit is contained in:
commit
ab8b4f0326
7 changed files with 183 additions and 8 deletions
|
@ -44,6 +44,12 @@ whitepaper_url: "/files/whitepaper/"
|
|||
company_agreement_url: https://www.firmenmonitor.at/Secure/CompanyDetail.aspx?CID=761761
|
||||
kickstarter_url: "https://www.kickstarter.com/projects/safingio/spn" # add the kickstarter url when ready
|
||||
|
||||
download_windows_url: "https://updates.safing.io/latest/windows_amd64/packages/portmaster-installer.exe"
|
||||
download_linux_url: "https://updates.safing.io/latest/linux_amd64/packages/portmaster-installer.deb"
|
||||
|
||||
github_windows_wiki: "https://github.com/safing/portmaster/wiki/Windows"
|
||||
github_linux_wiki: "https://github.com/safing/portmaster/wiki/Linux"
|
||||
|
||||
collections:
|
||||
podcasts:
|
||||
output: true
|
||||
|
|
|
@ -1,11 +1,14 @@
|
|||
<content class="kickstarter-plug">
|
||||
<a href="{{ site.kickstarter_url }}">
|
||||
<div>
|
||||
<h3>Raised 11.755€ on Kickstarter - Thank You!</h3>
|
||||
<p>Have a look at all the details and watch video updates from the team 🎬</p>
|
||||
</div>
|
||||
</a>
|
||||
</content>
|
||||
|
||||
{% unless page.exclude_kickstarter_plug == true %}
|
||||
<content class="kickstarter-plug">
|
||||
<a href="{{ site.kickstarter_url }}">
|
||||
<div>
|
||||
<h3>Raised 11.755€ on Kickstarter - Thank You!</h3>
|
||||
<p>Have a look at all the details and watch video updates from the team 🎬</p>
|
||||
</div>
|
||||
</a>
|
||||
</content>
|
||||
{% endunless %}
|
||||
|
||||
<footer class="f-bg">
|
||||
<div class="list">
|
||||
|
|
|
@ -32,3 +32,25 @@ i.icon.safing-primary {
|
|||
color: $white;
|
||||
}
|
||||
}
|
||||
|
||||
.ui.windows.button {
|
||||
background-color: #0072C6;
|
||||
color: #fff;
|
||||
|
||||
&:hover {
|
||||
background-color: darken(#0072C6, 5%);
|
||||
}
|
||||
}
|
||||
|
||||
.ui.ubuntu.button {
|
||||
background-color: #E95420;
|
||||
color: #fff;
|
||||
|
||||
&:hover {
|
||||
background-color: darken(#E95420, 5%);
|
||||
}
|
||||
}
|
||||
|
||||
.ui.apple.disabled.button {
|
||||
opacity: 1 !important;
|
||||
}
|
||||
|
|
|
@ -126,3 +126,7 @@ blockquote {
|
|||
blockquote p {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
i.white.icon {
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
|
|
@ -116,3 +116,18 @@
|
|||
display: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
// no reason to have a min height for segments
|
||||
// normal segments do not have min-height, why should the placeholder one have it?
|
||||
// if extra height is needed, just add it to the segment manually
|
||||
.ui.placeholder.segment {
|
||||
min-height: 0rem;
|
||||
}
|
||||
|
||||
// a 'normal' .ui.vertical.divider has text in between, this adds the option to have the line fully go through it
|
||||
// essentially a margin...
|
||||
.ui.full.vertical.divider {
|
||||
&::before, &::after {
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
|
|
BIN
assets/img/portmaster/modules.png
Normal file
BIN
assets/img/portmaster/modules.png
Normal file
Binary file not shown.
After ![]() (image error) Size: 23 KiB |
125
download/index.html
Normal file
125
download/index.html
Normal file
|
@ -0,0 +1,125 @@
|
|||
---
|
||||
layout: page_column
|
||||
title: Portmaster Download
|
||||
heading: Portmaster Download
|
||||
exclude_kickstarter_plug: true
|
||||
---
|
||||
<div class="ui basic very padded segment" style="padding-top: 0;">
|
||||
<div class="ui center aligned grid">
|
||||
<div class="six wide column">
|
||||
<a href="{{ site.github_url }}/portmaster/#portmaster" class="ui info message">
|
||||
<u>What is the Portmaster</u>
|
||||
<i class="question icon"></i>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="ui placeholder segment" style="display: block;text-align: center;padding: 1em 2.5em;">
|
||||
<span class="ui red text" style="font-size: 1.15em;"><b>Warning:</b></span> The Portmaster is still in its early "pre-alpha" development stage. It is functional, but has not yet been tested widely. Thus, currently <b>we expect you to</b> have the technical knowledge to troubleshoot and <b>fix issues on your end by yourself.</b> Limited support is available, see below.
|
||||
</div>
|
||||
<div class="ui basic very padded segment">
|
||||
<div class="ui three column centered doubling stackable grid">
|
||||
<div class="four wide column center aligned">
|
||||
<a href="{{ site.download_windows_url }}" target="_blank" class="ui windows button">
|
||||
<i class="white windows button icon"></i>
|
||||
Windows 10
|
||||
</a>
|
||||
</div>
|
||||
<div class="four wide column center aligned">
|
||||
<a href="{{ site.download_linux_url }}" target="_blank" class="ui ubuntu button">
|
||||
<i class="white ubuntu button icon"></i>
|
||||
Ubuntu <span class="ui small text">(latest)</span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="four wide column center aligned">
|
||||
<button class="ui apple disabled button">
|
||||
<i class="white apple button icon"></i>
|
||||
MacOS <span class="ui small text">(expect ~ 2021)</span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h1 class="ui horizontal divider header">Support</h1>
|
||||
|
||||
<div class="ui basic very padded segment">
|
||||
<div class="ui doubling stackable center aligned grid">
|
||||
<div class="ten wide column">
|
||||
<p>Please report technical issues on the <a href="{{ site.github_url }}/portmaster/issues" target="_blank">portmaster</a> repository, problems with the user interface on the <a href="{{ site.github_url }}/portmaster-ui/issues" target="_blank">portmaster-ui</a> repo and ask for help on <a href="{{ site.reddit_url }}" target="_blank">Reddit</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 class="ui horizontal divider header">Limited Support</h3>
|
||||
|
||||
<div class="ui basic very padded segment">
|
||||
<div class="ui placeholder segment" style="display: block;text-align: center;padding: 1em 2.5em;">
|
||||
<span class="ui small text">
|
||||
<span class="ui red text" style="font-size: 1.15em;"><b>Warning:</b></span> These platforms are compatible, but not all functionality is implemented or tested. <b>Probability of encountering unknown issues is high.</b> UI components may be impaired or completely broken. Issues we know about are listed:
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<div class="ui basic segment">
|
||||
<div class="row">
|
||||
<div class="ui two column very relaxed grid">
|
||||
<div class="column">
|
||||
<div class="ui center aligned grid">
|
||||
<div class="row">
|
||||
<div class="sixteen wide column">
|
||||
<h4>Windows 7, 8</h4>
|
||||
|
||||
<a href="{{ site.github_windows_wiki }}" class="ui tiny icon info message">
|
||||
<i class="file alternate icon"></i>
|
||||
<div class="text" style="padding-right: 2.5em;">
|
||||
<u>Windows Wiki</u>
|
||||
</div>
|
||||
<ul class="list">
|
||||
<li>Installation Guide</li>
|
||||
<li>Disclaimers</li>
|
||||
<li>Feature support list</li>
|
||||
</ul>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column">
|
||||
<div class="ui center aligned grid">
|
||||
<div class="row">
|
||||
<div class="sixteen wide column">
|
||||
<h4>Linux 2.4+</h4>
|
||||
|
||||
<a href="{{ site.github_linux_wiki }}" class="ui tiny icon info message">
|
||||
<i class="file alternate icon"></i>
|
||||
<div class="text" style="padding-right: 2.5em;">
|
||||
<u>Linux Wiki</u>
|
||||
</div>
|
||||
<ul class="list">
|
||||
<li>Installation Guides</li>
|
||||
<li>Disclaimers</li>
|
||||
<li>Supported Distros/Packages</li>
|
||||
<li>Feature support list</li>
|
||||
</ul>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="ui full vertical divider">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="ui basic segment">
|
||||
<div class="ui center aligned grid">
|
||||
<div class="column">
|
||||
<span class="ui small text">
|
||||
While we aim to fully support all platforms as soon as we can, we currently do not have the resources to do so.
|
||||
<br/>
|
||||
If your platform is not listed, or you think that it is underrepresented, please <a href="mailto:{{ site.email }}">contact us</a>!
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
Loading…
Add table
Reference in a new issue