Skip to content
This repository was archived by the owner on Aug 20, 2025. It is now read-only.

Commit f7511f8

Browse files
committed
Created one-page website incl. OSM Dashboard.
1 parent fc18c0b commit f7511f8

File tree

9 files changed

+393
-30
lines changed

9 files changed

+393
-30
lines changed

_config.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
title: OpenTracksApp
33
description: "OpenTracks is a sport tracking application that completely respects your privacy."
44
baseurl: "/"
5-
url: "/"
5+
6+
logo-url: "/static/img/opentracks-logo.svg"
67

78
safe: true
89

_includes/features.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# [Features](features)
2+
3+
### <img src="{{ site.logo-url }}" class="on-line-logo"> _Sharing:_ you decide if, when, with whom, and how to share your data.
4+
5+
### <img src="{{ site.logo-url }}" class="on-line-logo"> _Elevation gain:_ estimate your traveled elevation gain
6+
7+
### <img src="{{ site.logo-url }}" class="on-line-logo"> _Bluetooth LE sensor:_ collect your data like heart rate
8+
9+
### <img src="{{ site.logo-url }}" class="on-line-logo"> _Photos and Markers:_ mark interesting places while tracking
10+
11+
### <img src="/static/img/osmdashboard-logo.svg" class="on-line-logo"> _Online & offline maps_: take what you need with you
12+
13+
### <img src="/static/img/osmdashboard-logo.svg" class="on-line-logo"> _Theming_: style the maps how you like it
14+
15+
### <img src="/static/img/osmdashboard-logo.svg" class="on-line-logo"> _Compass_: shows your direction

_includes/header.html

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<header>
2+
<div class="wrap">
3+
<a href="/" class="site-title"><img class="on-line-logo" src="{{ site.logo-url }}"/>{{ site.title }}</a>
4+
<nav class="site-nav">
5+
<a href="#" class="menu-icon">
6+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 18 15" enable-background="new 0 0 18 15" xml:space="preserve">
7+
<path fill="#505050" d="M18,1.484c0,0.82-0.665,1.484-1.484,1.484H1.484C0.665,2.969,0,2.304,0,1.484l0,0C0,0.665,0.665,0,1.484,0h15.031C17.335,0,18,0.665,18,1.484L18,1.484z"/>
8+
<path fill="#505050" d="M18,7.516C18,8.335,17.335,9,16.516,9H1.484C0.665,9,0,8.335,0,7.516l0,0c0-0.82,0.665-1.484,1.484-1.484h15.031C17.335,6.031,18,6.696,18,7.516L18,7.516z"/>
9+
<path fill="#505050" d="M18,13.516C18,14.335,17.335,15,16.516,15H1.484C0.665,15,0,14.335,0,13.516l0,0c0-0.82,0.665-1.484,1.484-1.484h15.031C17.335,12.031,18,12.696,18,13.516L18,13.516z"/>
10+
</svg>
11+
</a>
12+
<div class="trigger">
13+
<a class="page-link" href="/">/home</a>
14+
<a class="page-link" href="/#features">/features</a>
15+
<a class="page-link" href="/#features">/privacy</a>
16+
17+
<a class="page-link" href="https://www.android.com/"><img class="on-line-logo" src="/static/img/android-logo.svg"></a>
18+
</div>
19+
</nav>
20+
</div>
21+
</header>

_includes/privacy.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# [Privacy](Privacy)
2+
3+
## Privacy first, features second.
4+
5+
OpenTracks and OSM Dashboard:
6+
* _do not contain any in-app analytics_
7+
* _do not use Google Play Services_
8+
* _have no cloud integration_

_layouts/default.html

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,25 @@
33
<head>
44
<meta charset="utf-8">
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6-
<title>{% if page.title %}{{ page.title }}{% endif %} / {{ site.title }}</title>
6+
<title>{{ site.title }}</title>
77
<meta name="viewport" content="width=device-width">
88
<meta name="description" content="{{ site.description }}">
99

10+
<link rel="icon" type="svg+xml" href="{{ site.logo-url }}">
11+
1012
<link rel="stylesheet" href="/static/main.css">
1113

1214
<meta name="theme-color" content="#ffffff">
1315
</head>
1416
<body>
1517

16-
{{ content }}
18+
{% include header.html %}
19+
20+
<div class="page-content">
21+
<div class="wrap">
22+
{{ content }}
23+
</div>
24+
</div>
1725

1826
</body>
1927
</html>

index.md

Lines changed: 36 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,42 @@
11
---
22
layout: default
3-
title: Home
43
---
54

6-
<div class="fullscreen">
7-
<div style="text-align:center">
8-
<img src="/static/img/opentracks-logo.svg" style="width: 10rem" />
95

10-
<br>
11-
<h1>#OpenTracks</h1>
6+
<table style="width:80%; text-align:center;margin-left:auto; margin-right:auto;">
7+
<tr>
8+
<td><h3>#OpenTracks</h3></td>
9+
<td><h3>#OSM Dasboard</h3></td>
10+
</tr>
11+
<tr>
12+
<td>
13+
<img src="{{ site.logo-url }}" style="width:10rem;">
14+
</td>
15+
<td>
16+
<img src="/static/img/osmdashboard-logo.svg" style="width:10rem;">
17+
</td>
18+
</tr>
1219

13-
<br>
14-
<a href="https://f-droid.org/packages/de.dennisguse.opentracks">
15-
<img alt="Get it on F-Droid" src="https://fdroid.gitlab.io/artwork/badge/get-it-on.png" height="60" align="middle">
16-
</a>
17-
</div>
18-
</div>
20+
<tr>
21+
<td>
22+
<a class="page-link" href="https://f-droid.org/packages/de.dennisguse.opentracks"><img alt="Get it on F-Droid" src="https://fdroid.gitlab.io/artwork/badge/get-it-on.png" style="height: 4rem;vertical-align: middle;"></a>
23+
</td>
24+
<td>
25+
<a class="page-link" href="https://f-droid.org/en/packages/de.storchp.opentracks.osmplugin/"><img alt="Get it on F-Droid" src="https://fdroid.gitlab.io/artwork/badge/get-it-on.png" style="height: 4rem;vertical-align: middle;"></a>
26+
</td>
27+
</tr>
28+
</table>
29+
30+
<hr />
31+
<h3 style="text-align:center">TL;DR</h3>
32+
<h1 style="text-align:center">
33+
{{ site.description }}
34+
</h1>
35+
<hr />
36+
37+
{% include features.md %}
38+
39+
{% include privacy.md %}
40+
41+
42+
<div style="height:10rem"></div>

static/img/android-logo.svg

Lines changed: 1 addition & 0 deletions
Loading

static/img/osmdashboard-logo.svg

Lines changed: 210 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)