From 02985b5387b9fcb181d2d89123665e24661482a7 Mon Sep 17 00:00:00 2001
From: Yuval Adam <_@yuv.al>
Date: Mon, 7 Aug 2017 22:23:21 +0300
Subject: Fix URL links
---
app.py | 6 +-
docs/blog/2017/05/26/intro/index.html | 8 +-
docs/blog/index.html | 10 +-
docs/index.html | 10 +-
docs/wiki/Battery-replacement/index.html | 8 +-
.../BlackBerry-Bold-Touch-9900-(Dakota)/index.html | 8 +-
docs/wiki/Boot-process/index.html | 8 +-
docs/wiki/Build-internals/index.html | 8 +-
docs/wiki/Coolpad-Sky-3-E502-(Modena-2)/index.html | 8 +-
docs/wiki/Creating-a-package/index.html | 8 +-
docs/wiki/Development-guide/index.html | 8 +-
docs/wiki/Device-Wishlist/index.html | 8 +-
docs/wiki/Devices/index.html | 8 +-
docs/wiki/External-resources/index.html | 8 +-
docs/wiki/Fairphone-2/index.html | 8 +-
docs/wiki/Firmware/index.html | 8 +-
docs/wiki/Glossary/index.html | 8 +-
docs/wiki/HTC-Ace-(HTC-Desire-HD)/index.html | 8 +-
docs/wiki/HTC-Bravo-(HTC-Desire)/index.html | 8 +-
docs/wiki/Home/index.html | 8 +-
.../index.html | 8 +-
docs/wiki/Initramfs-development/index.html | 8 +-
docs/wiki/Inspecting-the-initramfs/index.html | 8 +-
docs/wiki/Installation-Guide/index.html | 8 +-
.../index.html | 8 +-
docs/wiki/LG-G3-Global/index.html | 8 +-
docs/wiki/Matrix-and-IRC/index.html | 8 +-
.../wiki/Migration-to-aports-subfolders/index.html | 8 +-
docs/wiki/Milestones/index.html | 8 +-
docs/wiki/Mozilla-Flame/index.html | 8 +-
docs/wiki/Package-naming-convention/index.html | 8 +-
docs/wiki/Packaging-Plasma-Mobile/index.html | 8 +-
docs/wiki/Partition-layout/index.html | 8 +-
docs/wiki/Plasma-Mobile/index.html | 8 +-
docs/wiki/Porting-to-a-new-device/index.html | 8 +-
docs/wiki/Related-Projects/index.html | 8 +-
.../Samsung-N7100-(Galaxy-Note-II-GSM)/index.html | 8 +-
.../index.html | 8 +-
.../index.html | 8 +-
docs/wiki/Screen-Calibration/index.html | 8 +-
docs/wiki/Serial-debugging/index.html | 8 +-
docs/wiki/The-mainline-kernel/index.html | 8 +-
docs/wiki/Tips-and-tricks/index.html | 8 +-
docs/wiki/Troubleshooting/index.html | 8 +-
docs/wiki/Troubleshooting:grsec/index.html | 8 +-
docs/wiki/Troubleshooting:kernel/index.html | 8 +-
docs/wiki/Tuning-sysfs/index.html | 8 +-
docs/wiki/Upstreaming/index.html | 8 +-
docs/wiki/Using-prebuilt-kernels/index.html | 8 +-
docs/wiki/Wifi/index.html | 8 +-
docs/wiki/Xperia-E-Dual/index.html | 8 +-
docs/wiki/Xperia-Z2-Tablet/index.html | 8 +-
docs/wiki/Xperia-Z2/index.html | 8 +-
docs/wiki/_Sidebar/index.html | 8 +-
.../asus-grouper-(Google-Nexus-7-2012)/index.html | 8 +-
docs/wiki/deviceinfo-reference/index.html | 8 +-
docs/wiki/deviceinfo_flash_methods/index.html | 8 +-
docs/wiki/htc-monarudo-(HTC-Droid-DNA)/index.html | 8 +-
docs/wiki/index.html | 144 ++++++++++-----------
docs/wiki/jolla-sbj-(Jolla-phone)/index.html | 8 +-
docs/wiki/landrover-a9/index.html | 8 +-
.../wiki/lg-hammerhead-(Google-Nexus-5)/index.html | 8 +-
docs/wiki/lg-mako-(Google-Nexus-4)/index.html | 8 +-
docs/wiki/motorola-titan-(Moto-G-2014)/index.html | 8 +-
docs/wiki/nokia-rx51-(Nokia-N900)/index.html | 8 +-
docs/wiki/qemu-amd64-(QEMU-for-x86_64)/index.html | 8 +-
.../index.html | 8 +-
docs/wiki/samsung-S7562/index.html | 8 +-
.../index.html | 8 +-
.../samsung-i9100-(Samsung-Galaxy-SII)/index.html | 8 +-
.../index.html | 8 +-
.../wiki/sony-amami-(Xperia-Z1-Compact)/index.html | 8 +-
templates/base.html | 8 +-
templates/index.html | 2 +-
74 files changed, 362 insertions(+), 362 deletions(-)
diff --git a/app.py b/app.py
index fc4ab4a..2bb4567 100644
--- a/app.py
+++ b/app.py
@@ -1,6 +1,6 @@
import markdown
-from flask import Flask, render_template
+from flask import Flask, render_template, url_for
from os import listdir
app = Flask(__name__)
@@ -15,7 +15,7 @@ def home():
def parse_post(post):
y, m, d, *title = post[:-3].split('-')
slug = '-'.join(title)
- return {'url': f'/blog/{y}/{m}/{d}/{slug}/', 'title': ' '.join(title)}
+ return {'url': url_for('blog_post', y=y, m=m, d=d, slug=slug), 'title': ' '.join(title)}
@app.route('/blog/')
def blog():
@@ -38,7 +38,7 @@ def blog_post(y, m, d, slug):
def parse_page(page):
slug = page[:-3]
title = slug.replace('-', ' ')
- return {'url': f'/wiki/{slug}/', 'title': title}
+ return {'url': url_for('wiki_page', slug=slug), 'title': title}
@app.route('/wiki/')
def wiki():
diff --git a/docs/blog/2017/05/26/intro/index.html b/docs/blog/2017/05/26/intro/index.html
index 48a67c0..ce38e16 100644
--- a/docs/blog/2017/05/26/intro/index.html
+++ b/docs/blog/2017/05/26/intro/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/blog/index.html b/docs/blog/index.html
index 921e043..adfbd1e 100644
--- a/docs/blog/index.html
+++ b/docs/blog/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,15 +29,15 @@
diff --git a/docs/index.html b/docs/index.html
index fcdae6c..8b092ab 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -21,7 +21,7 @@
postmarketOS (pmOS), is a touch-optimized, pre-configured Alpine Linux that can be installed on smartphones and other mobile devices. The project is at very early stages of development and is not yet usable for most users.
-
For further details read our introductory blog post.
+
For further details read our introductory blog post.
Find us on:
- GitHub
diff --git a/docs/wiki/Battery-replacement/index.html b/docs/wiki/Battery-replacement/index.html
index 53fb4e2..cc430e3 100644
--- a/docs/wiki/Battery-replacement/index.html
+++ b/docs/wiki/Battery-replacement/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/BlackBerry-Bold-Touch-9900-(Dakota)/index.html b/docs/wiki/BlackBerry-Bold-Touch-9900-(Dakota)/index.html
index 37e8283..18ec235 100644
--- a/docs/wiki/BlackBerry-Bold-Touch-9900-(Dakota)/index.html
+++ b/docs/wiki/BlackBerry-Bold-Touch-9900-(Dakota)/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Boot-process/index.html b/docs/wiki/Boot-process/index.html
index 9b6024c..67bc193 100644
--- a/docs/wiki/Boot-process/index.html
+++ b/docs/wiki/Boot-process/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Build-internals/index.html b/docs/wiki/Build-internals/index.html
index 9c8a2b4..962115f 100644
--- a/docs/wiki/Build-internals/index.html
+++ b/docs/wiki/Build-internals/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Coolpad-Sky-3-E502-(Modena-2)/index.html b/docs/wiki/Coolpad-Sky-3-E502-(Modena-2)/index.html
index e2c8a0a..2c45823 100644
--- a/docs/wiki/Coolpad-Sky-3-E502-(Modena-2)/index.html
+++ b/docs/wiki/Coolpad-Sky-3-E502-(Modena-2)/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Creating-a-package/index.html b/docs/wiki/Creating-a-package/index.html
index 608c0a1..888cc5d 100644
--- a/docs/wiki/Creating-a-package/index.html
+++ b/docs/wiki/Creating-a-package/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Development-guide/index.html b/docs/wiki/Development-guide/index.html
index 6c807d9..05c2338 100644
--- a/docs/wiki/Development-guide/index.html
+++ b/docs/wiki/Development-guide/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Device-Wishlist/index.html b/docs/wiki/Device-Wishlist/index.html
index 23ce662..59b425b 100644
--- a/docs/wiki/Device-Wishlist/index.html
+++ b/docs/wiki/Device-Wishlist/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Devices/index.html b/docs/wiki/Devices/index.html
index cf5fa7c..7114ccb 100644
--- a/docs/wiki/Devices/index.html
+++ b/docs/wiki/Devices/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/External-resources/index.html b/docs/wiki/External-resources/index.html
index 61eb387..124bbe9 100644
--- a/docs/wiki/External-resources/index.html
+++ b/docs/wiki/External-resources/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Fairphone-2/index.html b/docs/wiki/Fairphone-2/index.html
index 309ec8b..3c4d219 100644
--- a/docs/wiki/Fairphone-2/index.html
+++ b/docs/wiki/Fairphone-2/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Firmware/index.html b/docs/wiki/Firmware/index.html
index 33b6c82..8cc7d17 100644
--- a/docs/wiki/Firmware/index.html
+++ b/docs/wiki/Firmware/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Glossary/index.html b/docs/wiki/Glossary/index.html
index ba9f300..749d7e6 100644
--- a/docs/wiki/Glossary/index.html
+++ b/docs/wiki/Glossary/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/HTC-Ace-(HTC-Desire-HD)/index.html b/docs/wiki/HTC-Ace-(HTC-Desire-HD)/index.html
index d33f988..b5a8589 100644
--- a/docs/wiki/HTC-Ace-(HTC-Desire-HD)/index.html
+++ b/docs/wiki/HTC-Ace-(HTC-Desire-HD)/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/HTC-Bravo-(HTC-Desire)/index.html b/docs/wiki/HTC-Bravo-(HTC-Desire)/index.html
index 094aed1..906fa4c 100644
--- a/docs/wiki/HTC-Bravo-(HTC-Desire)/index.html
+++ b/docs/wiki/HTC-Bravo-(HTC-Desire)/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Home/index.html b/docs/wiki/Home/index.html
index f756fe3..23aec74 100644
--- a/docs/wiki/Home/index.html
+++ b/docs/wiki/Home/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/How-to-find-device-specific-information/index.html b/docs/wiki/How-to-find-device-specific-information/index.html
index 763cb40..8dcf336 100644
--- a/docs/wiki/How-to-find-device-specific-information/index.html
+++ b/docs/wiki/How-to-find-device-specific-information/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Initramfs-development/index.html b/docs/wiki/Initramfs-development/index.html
index d5c8f12..00f2355 100644
--- a/docs/wiki/Initramfs-development/index.html
+++ b/docs/wiki/Initramfs-development/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Inspecting-the-initramfs/index.html b/docs/wiki/Inspecting-the-initramfs/index.html
index 19d64f4..3438177 100644
--- a/docs/wiki/Inspecting-the-initramfs/index.html
+++ b/docs/wiki/Inspecting-the-initramfs/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Installation-Guide/index.html b/docs/wiki/Installation-Guide/index.html
index edfd465..b204526 100644
--- a/docs/wiki/Installation-Guide/index.html
+++ b/docs/wiki/Installation-Guide/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Installing-packages-on-a-running-phone/index.html b/docs/wiki/Installing-packages-on-a-running-phone/index.html
index 1429dfb..a03a6ee 100644
--- a/docs/wiki/Installing-packages-on-a-running-phone/index.html
+++ b/docs/wiki/Installing-packages-on-a-running-phone/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/LG-G3-Global/index.html b/docs/wiki/LG-G3-Global/index.html
index 7d9b58e..e4d729d 100644
--- a/docs/wiki/LG-G3-Global/index.html
+++ b/docs/wiki/LG-G3-Global/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Matrix-and-IRC/index.html b/docs/wiki/Matrix-and-IRC/index.html
index 6893dff..32df4ec 100644
--- a/docs/wiki/Matrix-and-IRC/index.html
+++ b/docs/wiki/Matrix-and-IRC/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Migration-to-aports-subfolders/index.html b/docs/wiki/Migration-to-aports-subfolders/index.html
index baaa8fe..cb4b795 100644
--- a/docs/wiki/Migration-to-aports-subfolders/index.html
+++ b/docs/wiki/Migration-to-aports-subfolders/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Milestones/index.html b/docs/wiki/Milestones/index.html
index 0917c06..285022f 100644
--- a/docs/wiki/Milestones/index.html
+++ b/docs/wiki/Milestones/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Mozilla-Flame/index.html b/docs/wiki/Mozilla-Flame/index.html
index 214bb0a..fd0e65b 100644
--- a/docs/wiki/Mozilla-Flame/index.html
+++ b/docs/wiki/Mozilla-Flame/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Package-naming-convention/index.html b/docs/wiki/Package-naming-convention/index.html
index 86b9c71..f0d150d 100644
--- a/docs/wiki/Package-naming-convention/index.html
+++ b/docs/wiki/Package-naming-convention/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Packaging-Plasma-Mobile/index.html b/docs/wiki/Packaging-Plasma-Mobile/index.html
index e97ef3b..e50be06 100644
--- a/docs/wiki/Packaging-Plasma-Mobile/index.html
+++ b/docs/wiki/Packaging-Plasma-Mobile/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Partition-layout/index.html b/docs/wiki/Partition-layout/index.html
index e08d64f..3be2e22 100644
--- a/docs/wiki/Partition-layout/index.html
+++ b/docs/wiki/Partition-layout/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Plasma-Mobile/index.html b/docs/wiki/Plasma-Mobile/index.html
index 750d807..27fdaeb 100644
--- a/docs/wiki/Plasma-Mobile/index.html
+++ b/docs/wiki/Plasma-Mobile/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Porting-to-a-new-device/index.html b/docs/wiki/Porting-to-a-new-device/index.html
index 6694797..ad0c7bd 100644
--- a/docs/wiki/Porting-to-a-new-device/index.html
+++ b/docs/wiki/Porting-to-a-new-device/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Related-Projects/index.html b/docs/wiki/Related-Projects/index.html
index 8a0b282..2aaae31 100644
--- a/docs/wiki/Related-Projects/index.html
+++ b/docs/wiki/Related-Projects/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Samsung-N7100-(Galaxy-Note-II-GSM)/index.html b/docs/wiki/Samsung-N7100-(Galaxy-Note-II-GSM)/index.html
index 489b2d9..01704e0 100644
--- a/docs/wiki/Samsung-N7100-(Galaxy-Note-II-GSM)/index.html
+++ b/docs/wiki/Samsung-N7100-(Galaxy-Note-II-GSM)/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Samsung-i9070-(Samsung-Galaxy-S-Advance)/index.html b/docs/wiki/Samsung-i9070-(Samsung-Galaxy-S-Advance)/index.html
index ffdc030..c05da18 100644
--- a/docs/wiki/Samsung-i9070-(Samsung-Galaxy-S-Advance)/index.html
+++ b/docs/wiki/Samsung-i9070-(Samsung-Galaxy-S-Advance)/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Samsung-n7100-(Samsung-Galaxy-Note-2)/index.html b/docs/wiki/Samsung-n7100-(Samsung-Galaxy-Note-2)/index.html
index a1f315e..900c799 100644
--- a/docs/wiki/Samsung-n7100-(Samsung-Galaxy-Note-2)/index.html
+++ b/docs/wiki/Samsung-n7100-(Samsung-Galaxy-Note-2)/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Screen-Calibration/index.html b/docs/wiki/Screen-Calibration/index.html
index 42e5ed6..1db1c67 100644
--- a/docs/wiki/Screen-Calibration/index.html
+++ b/docs/wiki/Screen-Calibration/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Serial-debugging/index.html b/docs/wiki/Serial-debugging/index.html
index a03741f..91f7d04 100644
--- a/docs/wiki/Serial-debugging/index.html
+++ b/docs/wiki/Serial-debugging/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/The-mainline-kernel/index.html b/docs/wiki/The-mainline-kernel/index.html
index 2f44d82..6fed273 100644
--- a/docs/wiki/The-mainline-kernel/index.html
+++ b/docs/wiki/The-mainline-kernel/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Tips-and-tricks/index.html b/docs/wiki/Tips-and-tricks/index.html
index ed360dc..47323ab 100644
--- a/docs/wiki/Tips-and-tricks/index.html
+++ b/docs/wiki/Tips-and-tricks/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Troubleshooting/index.html b/docs/wiki/Troubleshooting/index.html
index 18b4eae..c13c9c1 100644
--- a/docs/wiki/Troubleshooting/index.html
+++ b/docs/wiki/Troubleshooting/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Troubleshooting:grsec/index.html b/docs/wiki/Troubleshooting:grsec/index.html
index f573e6c..b9e9b1b 100644
--- a/docs/wiki/Troubleshooting:grsec/index.html
+++ b/docs/wiki/Troubleshooting:grsec/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Troubleshooting:kernel/index.html b/docs/wiki/Troubleshooting:kernel/index.html
index 330aecf..b01b76d 100644
--- a/docs/wiki/Troubleshooting:kernel/index.html
+++ b/docs/wiki/Troubleshooting:kernel/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Tuning-sysfs/index.html b/docs/wiki/Tuning-sysfs/index.html
index 377a45d..7aef1d2 100644
--- a/docs/wiki/Tuning-sysfs/index.html
+++ b/docs/wiki/Tuning-sysfs/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Upstreaming/index.html b/docs/wiki/Upstreaming/index.html
index b688916..d64fb08 100644
--- a/docs/wiki/Upstreaming/index.html
+++ b/docs/wiki/Upstreaming/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Using-prebuilt-kernels/index.html b/docs/wiki/Using-prebuilt-kernels/index.html
index 51b4d41..b4b360a 100644
--- a/docs/wiki/Using-prebuilt-kernels/index.html
+++ b/docs/wiki/Using-prebuilt-kernels/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Wifi/index.html b/docs/wiki/Wifi/index.html
index 3474f37..685944f 100644
--- a/docs/wiki/Wifi/index.html
+++ b/docs/wiki/Wifi/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Xperia-E-Dual/index.html b/docs/wiki/Xperia-E-Dual/index.html
index fe934cb..9a6754d 100644
--- a/docs/wiki/Xperia-E-Dual/index.html
+++ b/docs/wiki/Xperia-E-Dual/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Xperia-Z2-Tablet/index.html b/docs/wiki/Xperia-Z2-Tablet/index.html
index b49e3cd..5c7f006 100644
--- a/docs/wiki/Xperia-Z2-Tablet/index.html
+++ b/docs/wiki/Xperia-Z2-Tablet/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/Xperia-Z2/index.html b/docs/wiki/Xperia-Z2/index.html
index dc8d51f..db0714f 100644
--- a/docs/wiki/Xperia-Z2/index.html
+++ b/docs/wiki/Xperia-Z2/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/_Sidebar/index.html b/docs/wiki/_Sidebar/index.html
index 30bd63d..3687f1d 100644
--- a/docs/wiki/_Sidebar/index.html
+++ b/docs/wiki/_Sidebar/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/asus-grouper-(Google-Nexus-7-2012)/index.html b/docs/wiki/asus-grouper-(Google-Nexus-7-2012)/index.html
index f9c2b9d..74166e3 100644
--- a/docs/wiki/asus-grouper-(Google-Nexus-7-2012)/index.html
+++ b/docs/wiki/asus-grouper-(Google-Nexus-7-2012)/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/deviceinfo-reference/index.html b/docs/wiki/deviceinfo-reference/index.html
index fcdfd84..0955730 100644
--- a/docs/wiki/deviceinfo-reference/index.html
+++ b/docs/wiki/deviceinfo-reference/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/deviceinfo_flash_methods/index.html b/docs/wiki/deviceinfo_flash_methods/index.html
index e1574f4..0f2c3c3 100644
--- a/docs/wiki/deviceinfo_flash_methods/index.html
+++ b/docs/wiki/deviceinfo_flash_methods/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/htc-monarudo-(HTC-Droid-DNA)/index.html b/docs/wiki/htc-monarudo-(HTC-Droid-DNA)/index.html
index b641ee1..f30c0c1 100644
--- a/docs/wiki/htc-monarudo-(HTC-Droid-DNA)/index.html
+++ b/docs/wiki/htc-monarudo-(HTC-Droid-DNA)/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/index.html b/docs/wiki/index.html
index af1ae6c..a89d211 100644
--- a/docs/wiki/index.html
+++ b/docs/wiki/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,149 +29,149 @@
diff --git a/docs/wiki/jolla-sbj-(Jolla-phone)/index.html b/docs/wiki/jolla-sbj-(Jolla-phone)/index.html
index 9162ba8..509d617 100644
--- a/docs/wiki/jolla-sbj-(Jolla-phone)/index.html
+++ b/docs/wiki/jolla-sbj-(Jolla-phone)/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/landrover-a9/index.html b/docs/wiki/landrover-a9/index.html
index b05ff4b..64c0019 100644
--- a/docs/wiki/landrover-a9/index.html
+++ b/docs/wiki/landrover-a9/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/lg-hammerhead-(Google-Nexus-5)/index.html b/docs/wiki/lg-hammerhead-(Google-Nexus-5)/index.html
index 2413a96..1580db8 100644
--- a/docs/wiki/lg-hammerhead-(Google-Nexus-5)/index.html
+++ b/docs/wiki/lg-hammerhead-(Google-Nexus-5)/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/lg-mako-(Google-Nexus-4)/index.html b/docs/wiki/lg-mako-(Google-Nexus-4)/index.html
index bee8c6c..744ef97 100644
--- a/docs/wiki/lg-mako-(Google-Nexus-4)/index.html
+++ b/docs/wiki/lg-mako-(Google-Nexus-4)/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/motorola-titan-(Moto-G-2014)/index.html b/docs/wiki/motorola-titan-(Moto-G-2014)/index.html
index 64d9ed5..9e09741 100644
--- a/docs/wiki/motorola-titan-(Moto-G-2014)/index.html
+++ b/docs/wiki/motorola-titan-(Moto-G-2014)/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/nokia-rx51-(Nokia-N900)/index.html b/docs/wiki/nokia-rx51-(Nokia-N900)/index.html
index 9ae593c..04a750c 100644
--- a/docs/wiki/nokia-rx51-(Nokia-N900)/index.html
+++ b/docs/wiki/nokia-rx51-(Nokia-N900)/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/qemu-amd64-(QEMU-for-x86_64)/index.html b/docs/wiki/qemu-amd64-(QEMU-for-x86_64)/index.html
index 4cce693..2caab8b 100644
--- a/docs/wiki/qemu-amd64-(QEMU-for-x86_64)/index.html
+++ b/docs/wiki/qemu-amd64-(QEMU-for-x86_64)/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/qemu-vexpress-(Qemu-with-vexpress-soc)/index.html b/docs/wiki/qemu-vexpress-(Qemu-with-vexpress-soc)/index.html
index f214b3c..6b291b8 100644
--- a/docs/wiki/qemu-vexpress-(Qemu-with-vexpress-soc)/index.html
+++ b/docs/wiki/qemu-vexpress-(Qemu-with-vexpress-soc)/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/samsung-S7562/index.html b/docs/wiki/samsung-S7562/index.html
index 692e98d..57430b2 100644
--- a/docs/wiki/samsung-S7562/index.html
+++ b/docs/wiki/samsung-S7562/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/samsung-g800f-(Samsung-Galaxy-S5-mini)/index.html b/docs/wiki/samsung-g800f-(Samsung-Galaxy-S5-mini)/index.html
index eeb9a16..ef44322 100644
--- a/docs/wiki/samsung-g800f-(Samsung-Galaxy-S5-mini)/index.html
+++ b/docs/wiki/samsung-g800f-(Samsung-Galaxy-S5-mini)/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/samsung-i9100-(Samsung-Galaxy-SII)/index.html b/docs/wiki/samsung-i9100-(Samsung-Galaxy-SII)/index.html
index 550fb95..faf8f16 100644
--- a/docs/wiki/samsung-i9100-(Samsung-Galaxy-SII)/index.html
+++ b/docs/wiki/samsung-i9100-(Samsung-Galaxy-SII)/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/samsung-maguro-(Google-Galaxy-Nexus-GSM)/index.html b/docs/wiki/samsung-maguro-(Google-Galaxy-Nexus-GSM)/index.html
index 41a22f2..37ca57e 100644
--- a/docs/wiki/samsung-maguro-(Google-Galaxy-Nexus-GSM)/index.html
+++ b/docs/wiki/samsung-maguro-(Google-Galaxy-Nexus-GSM)/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/docs/wiki/sony-amami-(Xperia-Z1-Compact)/index.html b/docs/wiki/sony-amami-(Xperia-Z1-Compact)/index.html
index a11c509..6dafc15 100644
--- a/docs/wiki/sony-amami-(Xperia-Z1-Compact)/index.html
+++ b/docs/wiki/sony-amami-(Xperia-Z1-Compact)/index.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
diff --git a/templates/base.html b/templates/base.html
index 8c26bcc..26d4d00 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -21,7 +21,7 @@
-
+
postmarketOS
@@ -29,9 +29,9 @@
{% block body %}
diff --git a/templates/index.html b/templates/index.html
index 1d51734..5cf06c6 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -6,7 +6,7 @@
postmarketOS (pmOS), is a touch-optimized, pre-configured Alpine Linux that can be installed on smartphones and other mobile devices. The project is at very early stages of development and is not yet usable for most users.
-
For further details read our introductory blog post.
+
For further details read our introductory blog post.
Find us on: