summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore4
-rw-r--r--Makefile32
-rw-r--r--footer.mdwn9
-rw-r--r--index.mdwn42
-rw-r--r--india.mdwn40
-rw-r--r--peru.mdwn29
-rw-r--r--style.scss8
-rw-r--r--topbar.mdwn3
8 files changed, 167 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..ac2dbe2
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+.sass-cache/
+*.css
+*.css.map
+*.html
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..5be9133
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,32 @@
+markdown-snippets := topbar.mdwn footer.mdwn
+hypertext-snippets = $(markdown-snippets:%.mdwn=%.html)
+markdown := $(filter-out $(markdown-snippets),$(wildcard *.mdwn))
+hypertext = $(subst index/index,index,$(markdown:%.mdwn=%/index.html))
+
+all: $(hypertext) style.css
+
+update: .git
+ git pull
+ $(MAKE) all
+
+$(hypertext-snippets): %.html: %.mdwn Makefile
+ pandoc -f markdown -t html -o $@ $<
+ sed -i -e '1i <div class=\"$*\">' -e '$$ a </div>' $@
+
+%.html %/index.html: %.mdwn $(hypertext-snippets) Makefile
+ $(if $(filter-out ./,$(dir $@)),mkdir -p $(dir $@))
+ pandoc -s -c style.css -B topbar.html -A footer.html -f markdown -t html -o $@ $<
+
+%.css : %.scss Makefile
+ scss --compass --style compressed $< $@
+
+clean:
+ find -type f -name '*.html' -delete
+ find -type d -empty -delete
+ rm -f style.css style.css.map
+ rm -rf .sass-cache
+
+MAKEFLAGS += --jobs
+.NOTPARALLEL: source
+.PHONY: all update clean
+.INTERMEDIATE: $(hypertext-snippets)
diff --git a/footer.mdwn b/footer.mdwn
new file mode 100644
index 0000000..75d1ebf
--- /dev/null
+++ b/footer.mdwn
@@ -0,0 +1,9 @@
+Couchdesign is [Jonas Smedegaard][] and [Siri Reiter][],
+Stauninggårdsvej 25, Orø, DK-4300 Holbæk
+
+[Jonas Smedegaard]: http://dr.jones.dk/
+ "IT-guide dr. Jones"
+
+[Siri Reiter]: <http://sirireiter.dk/>
+ "Siri Reiter Grafisk Design"
+
diff --git a/index.mdwn b/index.mdwn
new file mode 100644
index 0000000..7457392
--- /dev/null
+++ b/index.mdwn
@@ -0,0 +1,42 @@
+#Couchdesign
+
+Couchdesign is a collaboration between two Danes sharing a big red couch.
+
+* [Jonas Smedegaard][], IT-wizard
+* [Siri Reiter][], graphics artist
+
+We are both dedicated Debian users and contributers.
+
+Jonas is a package maintainer and advocate of Pure Debian Blends.
+Siri is a visual designer, engaged in the project DebianDesign.
+
+We like to work from home in our big red couch,
+and we like to collaborate with people from cultures around the globe.
+When home, we surf and connect through the internet,
+when traveling, we practice couch surfing whenever possible.
+
+
+## Debian
+We devote some of our work and attention to free software distros
+based on
+- or wanting to transition into a Debian distribution.
+
+* Debian Design
+* [Debian Parl][]
+* [Huayruro][]
+* AIMS Desktop
+
+[Jonas Smedegaard]: http://dr.jones.dk/
+ "IT-guide dr. Jones"
+
+[Siri Reiter]: <http://sirireiter.dk/>
+ "Siri Reiter Grafisk Design"
+
+[Debian]: <https://www.debian.org/>
+ "Debian - the universal operating system"
+
+[Debian Parl]: <https://wiki.debian.org/DebianParl/>
+ "DebianParl - Debian for parliamentarians"
+
+[Huayruro]: <https://wiki.debian.org/SugarBlend/Huayruro>
+ "Huayruro - Debian Blend of Sugar + Xfce + peruvian localization"
diff --git a/india.mdwn b/india.mdwn
new file mode 100644
index 0000000..0d38261
--- /dev/null
+++ b/india.mdwn
@@ -0,0 +1,40 @@
+# India Collaboration Trip
+During December 2015 and January 2016 we plan to stay in India,
+visiting friends and working with local Linux distributions.
+
+* [Hamara Linux][] in [Manesar][] [near Delhi][Manesar OSM] in the North of India
+* [Swecha Linux][] in [Hyderabad][] [in the Northern part][Hyderabad OSM] of South India
+
+We stay with friends in [Bengaluru][] [in the middle][Bengaluru OSM] of South India.
+
+After, we might visit friends in [Kathmandu][], [Nepal][Kathmandu OSM].
+
+During this travel time, we take care of other jobs as well.
+
+[Hamara Linux]: <https://www.hamaralinux.org/>
+
+[Manesar]: <https://en.wikipedia.org/wiki/Manesar>
+ "Manesar on Wikipedia"
+
+[Manesar OSM]: <https://www.openstreetmap.org/relation/3631133>
+ "Manesar on OpenStreetMap"
+
+[Swecha Linux]: <http://swecha.org/>
+
+[Hyderabad]: <https://en.wikipedia.org/wiki/Hyderabad>
+ "Hyderabad on Wikipedia"
+
+[Hyderabad OSM]: <https://www.openstreetmap.org/node/245640543>
+ "Hyderabad on OpenStreetMap"
+
+[Bengaluru]: <https://en.wikipedia.org/wiki/Bangalore>
+ "Bengaluru (a.k.a. Bangalore) on Wikipedia"
+
+[Bengaluru OSM]: <https://www.openstreetmap.org/node/3401391999>
+ "Bengaluru (a.k.a. Bangalore) on OpenStreetMap"
+
+[Kathmandu]: <https://en.wikipedia.org/wiki/Kathmandu>
+ "Kathmandu on Wikipedia"
+
+[Kathmandu OSM]: <https://www.openstreetmap.org/relation/4583125>
+ "Kathmandu on OpenStreetMap"
diff --git a/peru.mdwn b/peru.mdwn
new file mode 100644
index 0000000..15a9c5e
--- /dev/null
+++ b/peru.mdwn
@@ -0,0 +1,29 @@
+# Peru
+June-july 2015 we stayed in [Puerto Maldonado][],
+[at the rainforest][Puerto Maldonado OSM] in Peru,
+to work with the [Huayruro][] desktop project.
+Huayruro is a localized desktop for the Peruvian school system,
+involving the [Sugar][] learning environment
+plus a desktop based on the [Xfce][] desktop.
+
+Jonas is packaging and maintaing Sugar in Debian.
+Siri is developing a sugar-like styling for the desktop.
+
+The project is run by Sebastian Silva and Laura Vargas of [Somos Azúcar][].
+
+[Puerto Maldonado]: <https://en.wikipedia.org/wiki/Puerto Maldonado>
+ "Puerto Maldonado on Wikipedia"
+
+[Puerto Maldonado OSM]: <https://www.openstreetmap.org/node/268802158>
+ "Puerto Maldonado on OpenStreetMap"
+
+[Huayruro]: <https://wiki.debian.org/SugarBlend/Huayruro>
+ "Huayruro Debian Blend"
+
+[Sugar]: <https://www.sugarlabs.org/>
+ "Sugar Learning Environment"
+
+[Xfce]: <http://xfce.org/>
+ "Xfce Desktop Environment"
+
+[Somos Azúcar]: <http://somosazucar.org/>
diff --git a/style.scss b/style.scss
new file mode 100644
index 0000000..bdfad41
--- /dev/null
+++ b/style.scss
@@ -0,0 +1,8 @@
+/*! style.css | @License: GPL-3+ | http://couchdesign.dk/ */
+
+@import "normalize";
+@import "compass/typography";
+
+.topbar {
+ @include inline-list;
+}
diff --git a/topbar.mdwn b/topbar.mdwn
new file mode 100644
index 0000000..6a6deb1
--- /dev/null
+++ b/topbar.mdwn
@@ -0,0 +1,3 @@
+* [About](/)
+* [Peru](/peru)
+* [India](/india)