summaryrefslogtreecommitdiff
path: root/website/static/base
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2015-05-13 14:03:30 +0200
committerLudovic Courtès <ludo@gnu.org>2015-05-13 14:03:30 +0200
commit69c47d8261abfbcdbda6b2a4d53bd95796c315d3 (patch)
treedf5c02c29556317138171820797d9ee3300998c0 /website/static/base
parent81231b5e78d3c3976fd85354341d589e8d890a3c (diff)
downloadguix-artwork-69c47d8261abfbcdbda6b2a4d53bd95796c315d3.tar
guix-artwork-69c47d8261abfbcdbda6b2a4d53bd95796c315d3.tar.gz
website: Move static/ one level higher.
* website/www/static: Rename to... * website/static: ... this.
Diffstat (limited to 'website/static/base')
-rw-r--r--website/static/base/css/article.css46
-rw-r--r--website/static/base/css/base.css168
-rw-r--r--website/static/base/css/download.css9
-rw-r--r--website/static/base/css/footer-box.css19
-rw-r--r--website/static/base/css/header-box.css80
-rw-r--r--website/static/base/css/help.css9
-rw-r--r--website/static/base/css/index.css237
-rw-r--r--website/static/base/css/message-box.css37
-rw-r--r--website/static/base/img/Guix-package.pngbin0 -> 4351 bytes
-rw-r--r--website/static/base/img/GuixSD-logo.pngbin0 -> 3836 bytes
-rw-r--r--website/static/base/img/GuixSD-package.pngbin0 -> 4771 bytes
-rw-r--r--website/static/base/img/blue-btn-bg.pngbin0 -> 654 bytes
-rw-r--r--website/static/base/img/chat-icon.pngbin0 -> 5963 bytes
-rw-r--r--website/static/base/img/checkerboard-bg.pngbin0 -> 639 bytes
-rw-r--r--website/static/base/img/commits-mockup.pngbin0 -> 80627 bytes
-rw-r--r--website/static/base/img/contribute-btn-bg.pngbin0 -> 685 bytes
-rw-r--r--website/static/base/img/discovery-box-bg.pngbin0 -> 7638 bytes
-rw-r--r--website/static/base/img/discovery-box-shadow-bg.pngbin0 -> 627 bytes
-rw-r--r--website/static/base/img/download-btn-bg.pngbin0 -> 689 bytes
-rw-r--r--website/static/base/img/email-icon.pngbin0 -> 4905 bytes
-rw-r--r--website/static/base/img/favicon.pngbin0 -> 1354 bytes
-rw-r--r--website/static/base/img/featured-box-bg.pngbin0 -> 818 bytes
-rw-r--r--website/static/base/img/guix-manual-icon.pngbin0 -> 5857 bytes
-rw-r--r--website/static/base/img/guixsd-manual-icon.pngbin0 -> 5897 bytes
-rw-r--r--website/static/base/img/h-separator-darker.pngbin0 -> 1091 bytes
-rw-r--r--website/static/base/img/h-separator.pngbin0 -> 1266 bytes
-rw-r--r--website/static/base/img/icon-set.svg795
-rw-r--r--website/static/base/img/installer.svg267
-rw-r--r--website/static/base/img/library-icon.pngbin0 -> 4484 bytes
-rw-r--r--website/static/base/img/link-arrow.pngbin0 -> 604 bytes
-rw-r--r--website/static/base/img/manual-icon.pngbin0 -> 4515 bytes
-rw-r--r--website/static/base/img/more-info-bg.pngbin0 -> 1015 bytes
-rw-r--r--website/static/base/img/msg-info-bg.pngbin0 -> 2340 bytes
-rw-r--r--website/static/base/img/red-btn-bg.pngbin0 -> 657 bytes
-rw-r--r--website/static/base/img/screenshots/emacs-ui-generations-thumb.pngbin0 -> 70851 bytes
-rw-r--r--website/static/base/img/screenshots/emacs-ui-packages-thumb.pngbin0 -> 47960 bytes
-rw-r--r--website/static/base/img/screenshots/grub-menu-thumb.pngbin0 -> 33536 bytes
-rw-r--r--website/static/base/img/screenshots/slim-thumb.pngbin0 -> 70304 bytes
-rw-r--r--website/static/base/img/screenshots/user-interfaces-thumb.pngbin0 -> 63154 bytes
-rw-r--r--website/static/base/img/screenshots/windowmaker+icecat+inkscape-thumb.pngbin0 -> 63772 bytes
-rw-r--r--website/static/base/img/the-emacs-of-distros.pngbin0 -> 382022 bytes
-rw-r--r--website/static/base/img/white-star.pngbin0 -> 776 bytes
42 files changed, 1667 insertions, 0 deletions
diff --git a/website/static/base/css/article.css b/website/static/base/css/article.css
new file mode 100644
index 0000000..40a3ef8
--- /dev/null
+++ b/website/static/base/css/article.css
@@ -0,0 +1,46 @@
+/*
+ Public domain 2015 Luis Felipe López Acevedo. All rights waived.
+ <felipe.lopez@openmailbox.org>
+
+ NOTE The default style is targeted at screens with a width less than
+ 1024 pixels.
+*/
+
+article, .article {
+ background-color: white;
+ margin: auto;
+ max-width: 980px;
+ padding: 50px 20px;
+}
+
+h1, h2, h3, h4, h5 {
+ color: #4D4D4D;
+}
+
+h1 {
+ font-size: 2.5em;
+ text-align: center;
+}
+
+table {
+ border-collapse: collapse;
+ width: 100%;
+}
+
+table, td, th {
+ border-color: gray;
+ border-style: solid;
+ border-width: thin;
+}
+
+td, th {
+ padding: 5px 10px;
+}
+
+td {
+ font-size: 0.9em;
+}
+
+th {
+ background-color: #F5F5F5;
+}
diff --git a/website/static/base/css/base.css b/website/static/base/css/base.css
new file mode 100644
index 0000000..4669290
--- /dev/null
+++ b/website/static/base/css/base.css
@@ -0,0 +1,168 @@
+/*
+ Public domain 2015 Luis Felipe López Acevedo. All rights waived.
+ <felipe.lopez@openmailbox.org>
+
+ NOTE The default style is targeted at screens with a width less than
+ 1024 pixels.
+*/
+
+@import url("message-box.css");
+@import url("header-box.css");
+@import url("footer-box.css");
+
+
+/* NATIVE ELEMENTS */
+a:link, a:visited {
+ border-color: #F4BB15;
+ border-style: none none solid none;
+ border-width: thin;
+ color: #1A1A1A;
+ text-decoration: none;
+}
+
+a:active, a:focus, a:hover {
+ border-color: #F49B15;
+ border-style: none none dashed none;
+ color: black;
+}
+
+body {
+ background-color: #333;
+ font-family: sans-serif;
+ font-size: 16px;
+ margin: 0px;
+}
+/* END NATIVE ELEMENTS */
+
+
+/* IDs */
+#content-box {
+ background-color: white;
+}
+/* END IDs */
+
+
+/* CLASSES */
+a.button:link, a.button:visited {
+ background-position: bottom;
+ background-repeat: repeat-x;
+ border-style: none;
+ border-radius: 5px;
+ color: white;
+ display: block;
+ font-size: 14px;
+ padding: 8px 15px;
+ text-align: center;
+}
+
+a.btn-blue {
+ background-color: #63AFD8;
+ background-image: url("../img/blue-btn-bg.png");
+}
+
+a.btn-red {
+ background-color: #D86F63;
+ background-image: url("../img/red-btn-bg.png");
+}
+
+a.hlink-yellow:link, a.hlink-yellow:visited {
+ border-style: none;
+ color: #F4BB15;
+}
+
+a.hlink-yellow:active, a.hlink-yellow:focus, a.hlink-yellow:hover {
+ color: #F49B15;
+}
+
+a.hlink-more-dark, a.hlink-more-light {
+ background-image: url("../img/more-info-bg.png");
+ background-position: 100% 50%;
+ background-repeat: no-repeat;
+ border-style: none;
+ display: inline-block;
+ font-size: 1.2em;
+ line-height: 20px;
+ margin: 20px 0px;
+ padding-right: 30px;
+}
+
+a.hlink-more-dark, a.hlink-more-dark:link, a.hlink-more-dark:visited {
+ color: #333;
+}
+
+a.hlink-more-dark:active, a.hlink-more-dark:focus, a.hlink-more-dark:hover {
+ color: black;
+}
+
+a.hlink-more-light, a.hlink-more-light:link, a.hlink-more-light:visited {
+ color: #E6E6E6;
+}
+
+a.hlink-more-light:active, a.hlink-more-light:focus, a.hlink-more-light:hover {
+ text-shadow: 2px 2px black;
+}
+
+a.hlink-yellow-boxed, a.hlink-yellow-boxed:link, a.hlink-yellow-boxed:visited {
+ background-color: #F4BB15;
+ border-style: none;
+ color: black;
+ display: inline-block;
+ font-size: 1.2em;
+ line-height: 20px;
+ margin: 10px;
+ padding: 10px 15px;
+}
+
+a.hlink-yellow-boxed:active, a.hlink-yellow-boxed:focus,
+a.hlink-yellow-boxed:hover {
+ box-shadow: 2px 2px black;
+}
+
+.h-separator {
+ display: block;
+ margin: auto;
+ padding: 20px 0px;
+ width: 100%;
+}
+
+.text-center {
+ text-align: center;
+}
+
+.text-justify {
+ text-align: justify;
+}
+
+.text-left {
+ text-align: left;
+}
+
+.text-right {
+ text-align: right;
+}
+/* END CLASSES */
+
+
+@media screen and (min-width: 1024px) {
+ a.button:link, a.button:visited {
+ display: inline-block;
+ }
+
+ .h-separator {
+ width: auto;
+ }
+
+
+ /* GENERIC CONTAINERS */
+ .summary-box {
+ color: #4D4D4D;
+ display: inline-block;
+ font-size: 0.9em;
+ margin: 5px;
+ padding: 10px;
+ text-align: left;
+ vertical-align: top;
+ width: 280px;
+ }
+ /* END GENERIC CONTAINERS */
+}
diff --git a/website/static/base/css/download.css b/website/static/base/css/download.css
new file mode 100644
index 0000000..fab1bc6
--- /dev/null
+++ b/website/static/base/css/download.css
@@ -0,0 +1,9 @@
+/*
+ Public domain 2015 Luis Felipe López Acevedo. All rights waived.
+ <felipe.lopez@openmailbox.org>
+
+ NOTE The default style is targeted at screens with a width less than
+ 1024 pixels.
+*/
+
+@import url("article.css");
diff --git a/website/static/base/css/footer-box.css b/website/static/base/css/footer-box.css
new file mode 100644
index 0000000..d4d7cfe
--- /dev/null
+++ b/website/static/base/css/footer-box.css
@@ -0,0 +1,19 @@
+/*
+ Public domain 2015 Luis Felipe López Acevedo. All rights waived.
+ <felipe.lopez@openmailbox.org>
+
+ NOTE The default style is targeted at screens with a width less than
+ 1024 pixels.
+*/
+
+#footer-box {
+ background-color: #333;
+ color: white;
+ font-size: 12px;
+ padding: 20px;
+ text-align: center;
+}
+
+.metta {
+ color: #F4BB15;
+}
diff --git a/website/static/base/css/header-box.css b/website/static/base/css/header-box.css
new file mode 100644
index 0000000..4bb1c8a
--- /dev/null
+++ b/website/static/base/css/header-box.css
@@ -0,0 +1,80 @@
+/*
+ Public domain 2015 Luis Felipe López Acevedo. All rights waived.
+ <felipe.lopez@openmailbox.org>
+
+ NOTE The default style is targeted at screens with a width less than
+ 1024 pixels.
+*/
+
+#header-box {
+ background-color: #333;
+}
+
+#logo {
+ border-style: none;
+}
+
+#site-nav {
+ margin: 0;
+ padding: 0;
+ line-height: 55px;
+ list-style: none;
+}
+
+#site-nav > li {
+ display: block;
+}
+
+#site-nav a:link, #site-nav a:visited {
+ background-color: transparent;
+ background-image: url("../img/link-arrow.png");
+ background-position: 97% 50%;
+ background-repeat: no-repeat;
+ border-color: black;
+ border-style: solid none none none;
+ border-width: thin;
+ color: #F4BB15;
+ display: block;
+ padding: 0px 20px;
+ text-align: left;
+ text-decoration: none;
+}
+
+#site-nav a:active, #site-nav a:focus, #site-nav a:hover {
+ background-color: #2E3436;
+ color: #F49B15;
+}
+
+
+@media screen and (min-width: 1024px) {
+ #header-box {
+ height: 55px;
+ }
+
+ #logo > img {
+ border-style: none;
+ }
+
+ #site-nav {
+ float: right;
+ margin-right: 20px;
+ }
+
+
+ #site-nav > li {
+ display: inline-block;
+ text-align: center;
+ }
+
+ #site-nav a:link, #site-nav a:visited {
+ background-image: none;
+ border: none;
+ padding: 0px 10px;
+ }
+
+ #site-nav a:active, #site-nav a:focus, #site-nav a:hover {
+ background-color: transparent;
+ border-style: none none solid;
+ border-color: #F4BB15;
+ }
+}
diff --git a/website/static/base/css/help.css b/website/static/base/css/help.css
new file mode 100644
index 0000000..fab1bc6
--- /dev/null
+++ b/website/static/base/css/help.css
@@ -0,0 +1,9 @@
+/*
+ Public domain 2015 Luis Felipe López Acevedo. All rights waived.
+ <felipe.lopez@openmailbox.org>
+
+ NOTE The default style is targeted at screens with a width less than
+ 1024 pixels.
+*/
+
+@import url("article.css");
diff --git a/website/static/base/css/index.css b/website/static/base/css/index.css
new file mode 100644
index 0000000..942737f
--- /dev/null
+++ b/website/static/base/css/index.css
@@ -0,0 +1,237 @@
+/*
+ Public domain 2015 Luis Felipe López Acevedo. All rights waived.
+ <felipe.lopez@openmailbox.org>
+
+ NOTE The default style is targeted at screens with a width less than
+ 1024 pixels.
+*/
+
+h2 {
+ color: #4D4D4D;
+ font-size: 2.5em;
+ margin: 50px 0px;
+}
+
+h3 {
+ color: #4D4D4D;
+ font-size: 2.0em;
+}
+
+.info-box {
+ display: inline-block;
+ margin: 0px 20px 20px 20px;
+}
+
+
+/* FEATURED BOX */
+#featured-box {
+ background-color: #3D3D3D;
+ background-image: url("../img/checkerboard-bg.png"),
+ url("../img/featured-box-bg.png");
+ background-position: top, bottom;
+ background-repeat: repeat, repeat-x;
+}
+
+.featured-content {
+ color: white;
+ font-size: 17px;
+ padding: 40px 20px;
+}
+
+.featured-heading {
+ color: white;
+ font-size: 24px;
+ margin: 0px;
+}
+
+.featured-content > ul {
+ list-style-image: url("../img/white-star.png");
+ padding-left: 20px;
+}
+
+.featured-content li {
+ padding: 10px 0px;
+}
+
+.featured-actions {
+ text-align: center;
+}
+
+.action, .action:link, .action:visited {
+ border-color: black;
+ border-radius: 6px;
+ border-style: solid;
+ border-width: thin;
+ color: white;
+ display: inline-block;
+ font-size: 14px;
+ height: 47px;
+ line-height: 47px;
+ text-align: center;
+ vertical-align: middle;
+ width: 196px;
+}
+
+.action:active, .action:focus, .action:hover {
+ box-shadow: 0 0 4px gray;
+}
+
+.download {
+ background-color: #60B0DB;
+ background-image: url("../img/download-btn-bg.png");
+ background-position: bottom;
+ background-repeat: repeat-x;
+ margin-right: 20px;
+}
+
+.contribute {
+ background-color: #B060DB;
+ background-image: url("../img/contribute-btn-bg.png");
+ background-position: bottom;
+ background-repeat: repeat-x;
+}
+/* END FEATURED BOX */
+
+
+/* DISCOVERY BOX */
+#discovery-box {
+ background-color: #333;
+ background-image: url("../img/discovery-box-shadow-bg.png"),
+ url("../img/discovery-box-bg.png");
+ background-repeat: repeat-x, repeat;
+ color: #E6E6E6;
+ padding: 40px 10px;
+ text-align: center;
+}
+
+#discovery-box h2 {
+ color: #E6E6E6;
+}
+
+.video-preview {
+ border-color: black;
+ border-style: solid;
+ border-width: thin;
+ box-shadow: 0 0 4px black;
+ width: 100%;
+}
+
+#screens-box {
+ padding: 30px 0px;
+}
+
+#screens-box a {
+ border-style: none;
+ display: inline-block;
+}
+
+.screenshot-thumb {
+ border-color: black;
+ border-radius: 5px;
+ border-style: solid;
+ border-width: thin;
+ box-shadow: 0 0 4px gray;
+ display: inline-block;
+ margin: 10px;
+ width: 300px;
+}
+
+.screenshot-thumb:hover {
+ box-shadow: 0 0 4px black;
+}
+/* END DISCOVERY BOX */
+
+
+/* NEWS BOX */
+#news-box {
+ padding: 0px 10px;
+ text-align: center;
+}
+
+.news-entry:link, .news-entry:visited {
+ color: inherit;
+ display: block;
+ padding: 10px 15px;
+ text-align: left;
+}
+
+.news-entry:active, .news-entry:focus, .news-entry:hover {
+ background-color: #F4BB15;
+}
+
+.news-date {
+ color: #4D4D4D;
+ font-size: 0.9em;
+}
+
+.news-summary {
+ color: #4D4D4D;
+}
+/* END NEWS BOX */
+
+
+/* CONTACT BOX */
+#contact-box {
+ background-color: #F5F5F5;
+ background-image: url("../img/h-separator.png"),
+ url("../img/h-separator.png");
+ background-position: top center, bottom center;
+ background-repeat: no-repeat;
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ color: #4D4D4D;
+ padding: 10px;
+ text-align: center;
+}
+/* CONTACT BOX */
+
+
+@media screen and (min-width: 1024px) {
+ .info-box {
+ vertical-align: top;
+ width: 420px;
+ }
+
+
+ /* FEATURED BOX */
+ #featured-box {
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ height: 445px;
+ padding-top: 40px;
+ }
+
+ .featured-content {
+ margin: auto;
+ width: 960px;
+ }
+
+ .featured-actions {
+ text-align: right;
+ }
+ /* END FEATURED BOX */
+
+
+ /* NEWS BOX */
+ #news-box {
+ text-align: center;
+ padding: 0px 10px;
+ }
+
+ .news-entry:link, .news-entry:visited {
+ background-color: transparent;
+ border-color: white;
+ border-style: solid;
+ display: inline-block;
+ margin: 10px 0px 15px 0px;
+ vertical-align: top;
+ width: 270px;
+ }
+
+ .news-entry:active, .news-entry:focus, .news-entry:hover {
+ border-color: #F4BB15;
+ }
+ /* END NEWS BOX */
+}
diff --git a/website/static/base/css/message-box.css b/website/static/base/css/message-box.css
new file mode 100644
index 0000000..7606d67
--- /dev/null
+++ b/website/static/base/css/message-box.css
@@ -0,0 +1,37 @@
+/*
+ Public domain 2015 Luis Felipe López Acevedo. All rights waived.
+ <felipe.lopez@openmailbox.org>
+
+ NOTE The default style is targeted at screens with a width less than
+ 1024 pixels.
+*/
+
+.message-box {
+ background-image: url("../img/msg-info-bg.png");
+ background-position: -5px -5px;
+ background-repeat: no-repeat;
+ color: white;
+ font-size: 12px;
+ padding: 20px;
+}
+
+.message-box > a:link, .message-box > a:visited {
+ border-color: white;
+ border-style: none none dotted none;
+ border-width: thin;
+ color: white;
+ text-decoration: none;
+}
+
+.msg-info {
+ background-color: #5FBCD3;
+}
+
+.msg-warning {
+ background-color: #D35F5F;
+}
+
+.msg-label {
+ font-weight: bold;
+ padding-right: 10px;
+}
diff --git a/website/static/base/img/Guix-package.png b/website/static/base/img/Guix-package.png
new file mode 100644
index 0000000..ea3dba9
--- /dev/null
+++ b/website/static/base/img/Guix-package.png
Binary files differ
diff --git a/website/static/base/img/GuixSD-logo.png b/website/static/base/img/GuixSD-logo.png
new file mode 100644
index 0000000..0642520
--- /dev/null
+++ b/website/static/base/img/GuixSD-logo.png
Binary files differ
diff --git a/website/static/base/img/GuixSD-package.png b/website/static/base/img/GuixSD-package.png
new file mode 100644
index 0000000..ef7f5ca
--- /dev/null
+++ b/website/static/base/img/GuixSD-package.png
Binary files differ
diff --git a/website/static/base/img/blue-btn-bg.png b/website/static/base/img/blue-btn-bg.png
new file mode 100644
index 0000000..a924054
--- /dev/null
+++ b/website/static/base/img/blue-btn-bg.png
Binary files differ
diff --git a/website/static/base/img/chat-icon.png b/website/static/base/img/chat-icon.png
new file mode 100644
index 0000000..e9aeb87
--- /dev/null
+++ b/website/static/base/img/chat-icon.png
Binary files differ
diff --git a/website/static/base/img/checkerboard-bg.png b/website/static/base/img/checkerboard-bg.png
new file mode 100644
index 0000000..a7fddd3
--- /dev/null
+++ b/website/static/base/img/checkerboard-bg.png
Binary files differ
diff --git a/website/static/base/img/commits-mockup.png b/website/static/base/img/commits-mockup.png
new file mode 100644
index 0000000..7e3895e
--- /dev/null
+++ b/website/static/base/img/commits-mockup.png
Binary files differ
diff --git a/website/static/base/img/contribute-btn-bg.png b/website/static/base/img/contribute-btn-bg.png
new file mode 100644
index 0000000..824da7d
--- /dev/null
+++ b/website/static/base/img/contribute-btn-bg.png
Binary files differ
diff --git a/website/static/base/img/discovery-box-bg.png b/website/static/base/img/discovery-box-bg.png
new file mode 100644
index 0000000..67a79fc
--- /dev/null
+++ b/website/static/base/img/discovery-box-bg.png
Binary files differ
diff --git a/website/static/base/img/discovery-box-shadow-bg.png b/website/static/base/img/discovery-box-shadow-bg.png
new file mode 100644
index 0000000..a191492
--- /dev/null
+++ b/website/static/base/img/discovery-box-shadow-bg.png
Binary files differ
diff --git a/website/static/base/img/download-btn-bg.png b/website/static/base/img/download-btn-bg.png
new file mode 100644
index 0000000..c27e7a8
--- /dev/null
+++ b/website/static/base/img/download-btn-bg.png
Binary files differ
diff --git a/website/static/base/img/email-icon.png b/website/static/base/img/email-icon.png
new file mode 100644
index 0000000..e45ffc1
--- /dev/null
+++ b/website/static/base/img/email-icon.png
Binary files differ
diff --git a/website/static/base/img/favicon.png b/website/static/base/img/favicon.png
new file mode 100644
index 0000000..cbbff44
--- /dev/null
+++ b/website/static/base/img/favicon.png
Binary files differ
diff --git a/website/static/base/img/featured-box-bg.png b/website/static/base/img/featured-box-bg.png
new file mode 100644
index 0000000..5fcead6
--- /dev/null
+++ b/website/static/base/img/featured-box-bg.png
Binary files differ
diff --git a/website/static/base/img/guix-manual-icon.png b/website/static/base/img/guix-manual-icon.png
new file mode 100644
index 0000000..e0a52b6
--- /dev/null
+++ b/website/static/base/img/guix-manual-icon.png
Binary files differ
diff --git a/website/static/base/img/guixsd-manual-icon.png b/website/static/base/img/guixsd-manual-icon.png
new file mode 100644
index 0000000..8322d7b
--- /dev/null
+++ b/website/static/base/img/guixsd-manual-icon.png
Binary files differ
diff --git a/website/static/base/img/h-separator-darker.png b/website/static/base/img/h-separator-darker.png
new file mode 100644
index 0000000..2f20098
--- /dev/null
+++ b/website/static/base/img/h-separator-darker.png
Binary files differ
diff --git a/website/static/base/img/h-separator.png b/website/static/base/img/h-separator.png
new file mode 100644
index 0000000..0d64864
--- /dev/null
+++ b/website/static/base/img/h-separator.png
Binary files differ
diff --git a/website/static/base/img/icon-set.svg b/website/static/base/img/icon-set.svg
new file mode 100644
index 0000000..15dd354
--- /dev/null
+++ b/website/static/base/img/icon-set.svg
@@ -0,0 +1,795 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="180"
+ height="180"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.48.5 r10040"
+ sodipodi:docname="icon-set.svg"
+ inkscape:export-filename="library-icon.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <title
+ id="title3990">Flat Icons</title>
+ <defs
+ id="defs4">
+ <color-profile
+ name="Artifex-PS-CMYK-Profile"
+ xlink:href="/usr/share/color/icc/ghostscript/ps_cmyk.icc"
+ id="color-profile3838" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1"
+ inkscape:cx="70.829787"
+ inkscape:cy="106.33338"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:window-width="1440"
+ inkscape:window-height="834"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:showpageshadow="false"
+ inkscape:snap-global="false"
+ inkscape:snap-nodes="false"
+ inkscape:snap-bbox="false"
+ inkscape:bbox-paths="true"
+ showguides="true"
+ inkscape:guide-bbox="true">
+ <inkscape:grid
+ type="xygrid"
+ id="grid3245"
+ empspacing="1"
+ visible="true"
+ enabled="true"
+ snapvisiblegridlinesonly="true"
+ spacingx="100px"
+ spacingy="100px"
+ originx="40px"
+ originy="40px" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title>Flat Icons</dc:title>
+ <dc:date>August 18, 2013</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Luis Felipe Lopez Acevedo, aka sirgazil</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:rights>
+ <cc:Agent>
+ <dc:title>Luis Felipe Lopez Acevedo, aka sirgazil</dc:title>
+ </cc:Agent>
+ </dc:rights>
+ <cc:license
+ rdf:resource="http://creativecommons.org/licenses/publicdomain/" />
+ </cc:Work>
+ <cc:License
+ rdf:about="http://creativecommons.org/licenses/publicdomain/">
+ <cc:permits
+ rdf:resource="http://creativecommons.org/ns#Reproduction" />
+ <cc:permits
+ rdf:resource="http://creativecommons.org/ns#Distribution" />
+ <cc:permits
+ rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+ </cc:License>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Capa 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-872.36218)">
+ <g
+ id="g3130"
+ transform="translate(-260,-180)">
+ <path
+ inkscape:connector-curvature="0"
+ id="rect3269"
+ d="m 89.999998,902.68062 c -2.540251,0 -5.071526,0.59571 -7.018006,1.78778 l -53.842705,32.95988 0,59.3582 36.782688,22.51852 48.156045,0 36.78269,-22.51852 0,-59.3582 -53.842705,-32.95988 c -1.946481,-1.19207 -4.477742,-1.78778 -7.018007,-1.78778 z"
+ style="fill:#333333;fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
+ id="rect3621"
+ width="112.70644"
+ height="65.526482"
+ x="32.893764"
+ y="938.53809" />
+ <g
+ style="fill:#333333"
+ id="g3126">
+ <rect
+ y="948.20569"
+ x="59.246052"
+ height="3.0577605"
+ width="60.645584"
+ id="rect3644"
+ style="fill:#333333;fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:#333333;fill-opacity:1;stroke:none"
+ id="rect3646"
+ width="60.645584"
+ height="3.0577605"
+ x="59.246052"
+ y="956.7674" />
+ </g>
+ <path
+ id="rect3275"
+ d="m 150.86071,939.63449 -58.540397,28.94686 c -3.799339,1.87924 -5.08444,6.02633 -2.890883,9.28126 l 29.7837,44.18109 31.64758,0 0,-82.40921 z"
+ style="fill:#333333;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ id="rect3273"
+ d="m 29.139287,939.63449 0,82.40921 31.647577,0 29.783702,-44.18109 c 2.193558,-3.25493 0.908457,-7.40202 -2.890882,-9.28126 L 29.139287,939.63449 z"
+ style="fill:#333333;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3642"
+ d="m 89.096807,965.95528 c -3.723653,0.13314 -7.504955,1.60284 -10.467827,4.35966 l -49.337551,51.60656 0,0.1222 120.060971,0 0,-0.1222 -50.125454,-52.36033 c -2.743635,-2.55285 -6.4065,-3.73899 -10.130139,-3.60589 z"
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
+ sodipodi:nodetypes="sccccccs" />
+ <path
+ style="fill:#333333;fill-opacity:1;stroke:none"
+ d="m 89.096807,971.6631 c -3.723653,0.13314 -7.504955,1.60284 -10.467827,4.35966 l -49.337551,45.89874 0,0.1222 120.060971,0 0,-0.1222 -50.125454,-46.65251 c -2.743635,-2.55285 -6.4065,-3.73899 -10.130139,-3.60589 z"
+ id="path3324"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="translate(-1160.0177,610.69615)"
+ inkscape:label="referencia"
+ id="layer2-3" />
+ <g
+ inkscape:label="Layer 1"
+ id="g3194"
+ transform="translate(-381.66039,1217.4341)" />
+ <g
+ id="g3986">
+ <rect
+ style="fill:#4d88bc;fill-opacity:1;stroke:none"
+ id="rect3919"
+ width="48.92857"
+ height="94.64286"
+ x="225.71428"
+ y="930.57648"
+ rx="5"
+ ry="5" />
+ <path
+ sodipodi:type="arc"
+ style="fill:#4d88bc;fill-opacity:1;stroke:none"
+ id="path3921"
+ sodipodi:cx="98.928574"
+ sodipodi:cy="57.142857"
+ sodipodi:rx="21.071428"
+ sodipodi:ry="21.071428"
+ d="m 120,57.142857 c 0,11.637428 -9.434,21.071428 -21.071426,21.071428 -11.637429,0 -21.071429,-9.434 -21.071429,-21.071428 0,-11.637429 9.434,-21.071429 21.071429,-21.071429 11.637426,0 21.071426,9.434 21.071426,21.071429 z"
+ transform="matrix(1.1101695,0,0,1.1101695,191.77966,931.53107)" />
+ <path
+ style="fill:#4d88bc;fill-opacity:1;stroke:none"
+ d="m 291.46653,937.57647 -11.51184,11.37587 11.51184,11.33055 0,-6.43576 c 21.35634,0.44873 20.34967,17.08648 20.34967,17.08648 0,0 4.04159,-26.29704 -20.34967,-26.92139 l 0,-6.43575 z"
+ id="path3923"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
+ d="m 301.61706,975.13495 c -10.94875,0 -19.84428,8.89554 -19.84428,19.84428 0,10.94877 8.89553,19.80957 19.84428,19.80957 10.94874,0 19.80958,-8.8608 19.80958,-19.80957 0,-10.94874 -8.86084,-19.84428 -19.80958,-19.84428 z m 0,2.77543 c 9.41592,0 17.03416,7.65293 17.03416,17.06885 0,9.41597 -7.61824,17.03417 -17.03416,17.03417 -9.41592,0 -17.06886,-7.6182 -17.06886,-17.03417 0,-9.41592 7.65294,-17.06885 17.06886,-17.06885 z"
+ id="path3925"
+ inkscape:connector-curvature="0" />
+ <path
+ transform="matrix(0.3010629,0,0,0.3010629,271.82342,977.76573)"
+ d="m 120,57.142857 c 0,11.637428 -9.434,21.071428 -21.071426,21.071428 -11.637429,0 -21.071429,-9.434 -21.071429,-21.071428 0,-11.637429 9.434,-21.071429 21.071429,-21.071429 11.637426,0 21.071426,9.434 21.071426,21.071429 z"
+ sodipodi:ry="21.071428"
+ sodipodi:rx="21.071428"
+ sodipodi:cy="57.142857"
+ sodipodi:cx="98.928574"
+ id="path3927"
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
+ sodipodi:type="arc" />
+ <rect
+ ry="3"
+ rx="3"
+ y="935.2193"
+ x="229.40701"
+ height="85.357147"
+ width="41.543125"
+ id="rect3929"
+ style="fill:none;stroke:#ffffff;stroke-opacity:1" />
+ <path
+ sodipodi:type="arc"
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
+ id="path3931"
+ sodipodi:cx="98.928574"
+ sodipodi:cy="57.142857"
+ sodipodi:rx="21.071428"
+ sodipodi:ry="21.071428"
+ d="m 120,57.142857 c 0,11.637428 -9.434,21.071428 -21.071426,21.071428 -11.637429,0 -21.071429,-9.434 -21.071429,-21.071428 0,-11.637429 9.434,-21.071429 21.071429,-21.071429 11.637426,0 21.071426,9.434 21.071426,21.071429 z"
+ transform="matrix(0.15254236,0,0,0.15254236,235.08777,985.71691)" />
+ <rect
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
+ id="rect3933"
+ width="28.928572"
+ height="9.2857141"
+ x="235.35715"
+ y="947.36218"
+ rx="3"
+ ry="3" />
+ <rect
+ ry="3"
+ rx="3"
+ y="963.36218"
+ x="235.35715"
+ height="9.2857141"
+ width="28.928572"
+ id="rect3935"
+ style="fill:#ffffff;fill-opacity:1;stroke:none" />
+ </g>
+ <g
+ id="g3997"
+ transform="translate(0.32142925,-399.22864)">
+ <path
+ sodipodi:nodetypes="sssssssss"
+ inkscape:connector-curvature="0"
+ id="rect3955"
+ d="m 60.313428,1192.9336 9.730291,0 c 0.579039,0 1.133719,-1.3575 1.045197,-3 l -0.696799,-12.9286 c -0.08852,-1.6424 -0.466157,-3 -1.045197,-3 l -8.336694,0 c -0.57904,0 -0.956675,1.3576 -1.045198,3 l -0.696798,12.9286 c -0.08852,1.6425 0.466158,3 1.045198,3 z"
+ style="fill:#4d88bc;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999988;stroke-opacity:1" />
+ <rect
+ ry="3"
+ rx="3"
+ y="1134.4336"
+ x="26.785715"
+ height="45.357143"
+ width="76.785713"
+ id="rect3972"
+ style="fill:#4d88bc;fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
+ id="rect3974"
+ width="68.928574"
+ height="35.001659"
+ x="30.714287"
+ y="1139.6113"
+ rx="2"
+ ry="2" />
+ <rect
+ ry="5"
+ rx="5"
+ y="1130.248"
+ x="79.714287"
+ height="84.971329"
+ width="43.92857"
+ id="rect3875"
+ style="fill:#4d88bc;fill-opacity:1;stroke:#ffffff;stroke-opacity:1" />
+ <rect
+ style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1"
+ id="rect3891"
+ width="37.297844"
+ height="76.634521"
+ x="83.029648"
+ y="1134.4164"
+ rx="3"
+ ry="3" />
+ <path
+ transform="matrix(0.13695409,0,0,0.13695409,88.129898,1179.7537)"
+ d="m 120,57.142857 c 0,11.637428 -9.434,21.071428 -21.071426,21.071428 -11.637429,0 -21.071429,-9.434 -21.071429,-21.071428 0,-11.637429 9.434,-21.071429 21.071429,-21.071429 11.637426,0 21.071426,9.434 21.071426,21.071429 z"
+ sodipodi:ry="21.071428"
+ sodipodi:rx="21.071428"
+ sodipodi:cy="57.142857"
+ sodipodi:cx="98.928574"
+ id="path3895"
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
+ sodipodi:type="arc" />
+ <rect
+ ry="3"
+ rx="3"
+ y="1145.3184"
+ x="88.371742"
+ height="8.3368092"
+ width="25.972368"
+ id="rect3897"
+ style="fill:#ffffff;fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
+ id="rect3899"
+ width="25.972368"
+ height="8.3368092"
+ x="88.371742"
+ y="1159.6833"
+ rx="3"
+ ry="3" />
+ <rect
+ ry="3"
+ rx="3"
+ y="1186.1479"
+ x="25.714285"
+ height="32.14286"
+ width="65.35714"
+ id="rect3953"
+ style="fill:#4d88bc;fill-opacity:1;stroke:#ffffff;stroke-opacity:1" />
+ <path
+ style="fill:#4d88bc;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-opacity:1"
+ d="m 42.851676,1222.9336 39.082353,0 c 2.32575,0 4.55366,-0.8965 4.198104,-1.9811 l -2.798736,-8.5378 c -0.355556,-1.0846 -1.872355,-1.9811 -4.198105,-1.9811 l -33.48488,0 c -2.32575,0 -3.842549,0.8965 -4.198104,1.9811 l -2.798737,8.5378 c -0.355555,1.0846 1.872355,1.9811 4.198105,1.9811 z"
+ id="path3958"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="sssssssss" />
+ <path
+ transform="matrix(2,0,0,0.75000001,-29.285713,1120.7015)"
+ d="m 32.5,96.785713 c 0,0.788978 -0.639593,1.428572 -1.428572,1.428572 -0.788978,0 -1.428571,-0.639594 -1.428571,-1.428572 0,-0.788978 0.639593,-1.428571 1.428571,-1.428571 0.788979,0 1.428572,0.639593 1.428572,1.428571 z"
+ sodipodi:ry="1.4285715"
+ sodipodi:rx="1.4285715"
+ sodipodi:cy="96.785713"
+ sodipodi:cx="31.071428"
+ id="path3960"
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
+ sodipodi:type="arc" />
+ <path
+ sodipodi:type="arc"
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
+ id="path3964"
+ sodipodi:cx="31.071428"
+ sodipodi:cy="96.785713"
+ sodipodi:rx="1.4285715"
+ sodipodi:ry="1.4285715"
+ d="m 32.5,96.785713 c 0,0.788978 -0.639593,1.428572 -1.428572,1.428572 -0.788978,0 -1.428571,-0.639594 -1.428571,-1.428572 0,-0.788978 0.639593,-1.428571 1.428571,-1.428571 0.788979,0 1.428572,0.639593 1.428572,1.428571 z"
+ transform="matrix(1.25,0,0,1.25,-5.9821423,1091.38)" />
+ <path
+ inkscape:connector-curvature="0"
+ id="rect3983"
+ d="m 39.65625,1186.3934 0,14.4527 c 0,1.5497 1.338,2.7973 3,2.7973 l 41.125,0 c 1.662,0 3,-1.2476 3,-2.7973 l 0,-14.4527 -47.125,0 z"
+ style="fill:#4d88bc;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-opacity:1" />
+ </g>
+ <rect
+ ry="2.4489794"
+ rx="2.4489794"
+ y="910.93359"
+ x="30.612249"
+ height="102.85714"
+ width="118.77551"
+ id="rect4976"
+ style="fill:#333333;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999987999999995;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+ <rect
+ y="910.32135"
+ x="108.36736"
+ height="104.08163"
+ width="2.4489796"
+ id="rect4978"
+ style="fill:#ffffff;fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
+ id="rect4980"
+ width="2.4489796"
+ height="104.08163"
+ x="69.183678"
+ y="910.32135" />
+ <path
+ transform="matrix(1.2244898,0,0,1.2244898,1.2307149,868.3857)"
+ d="m 50.002549,57.065968 a 10.101525,10.101525 0 1 1 -20.20305,0 10.101525,10.101525 0 1 1 20.20305,0 z"
+ sodipodi:ry="10.101525"
+ sodipodi:rx="10.101525"
+ sodipodi:cy="57.065968"
+ sodipodi:cx="39.901024"
+ id="path4982"
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
+ sodipodi:type="arc" />
+ <text
+ sodipodi:linespacing="125%"
+ id="text4984"
+ y="944.51099"
+ x="49.708244"
+ style="font-size:17.14285660000000178px;font-style:normal;font-weight:bold;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#333333;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
+ xml:space="preserve"><tspan
+ y="944.51099"
+ x="49.708244"
+ id="tspan4986"
+ sodipodi:role="line">1</tspan></text>
+ <path
+ sodipodi:type="arc"
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
+ id="path4988"
+ sodipodi:cx="39.901024"
+ sodipodi:cy="57.065968"
+ sodipodi:rx="10.101525"
+ sodipodi:ry="10.101525"
+ d="m 50.002549,57.065968 a 10.101525,10.101525 0 1 1 -20.20305,0 10.101525,10.101525 0 1 1 20.20305,0 z"
+ transform="matrix(1.2244898,0,0,1.2244898,41.289017,868.3857)" />
+ <text
+ xml:space="preserve"
+ style="font-size:17.14285660000000178px;font-style:normal;font-weight:bold;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#333333;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
+ x="89.766563"
+ y="944.51099"
+ id="text4990"
+ sodipodi:linespacing="125%"><tspan
+ sodipodi:role="line"
+ id="tspan4992"
+ x="89.766563"
+ y="944.51099">2</tspan></text>
+ <path
+ transform="matrix(1.2244898,0,0,1.2244898,80.910005,868.3857)"
+ d="m 50.002549,57.065968 a 10.101525,10.101525 0 1 1 -20.20305,0 10.101525,10.101525 0 1 1 20.20305,0 z"
+ sodipodi:ry="10.101525"
+ sodipodi:rx="10.101525"
+ sodipodi:cy="57.065968"
+ sodipodi:cx="39.901024"
+ id="path4994"
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
+ sodipodi:type="arc" />
+ <text
+ sodipodi:linespacing="125%"
+ id="text4996"
+ y="944.51099"
+ x="129.38756"
+ style="font-size:17.14285660000000178px;font-style:normal;font-weight:bold;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#333333;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
+ xml:space="preserve"><tspan
+ y="944.51099"
+ x="129.38756"
+ id="tspan4998"
+ sodipodi:role="line">3</tspan></text>
+ <rect
+ transform="matrix(0,1,-1,0,0,0)"
+ y="-150"
+ x="980.72955"
+ height="120"
+ width="2.4489796"
+ id="rect5000"
+ style="fill:#ffffff;fill-opacity:1;stroke:none" />
+ <rect
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
+ id="rect5002"
+ width="2.4489796"
+ height="120"
+ x="988.07648"
+ y="-150"
+ transform="matrix(0,1,-1,0,0,0)" />
+ <rect
+ transform="matrix(0,1,-1,0,0,0)"
+ y="-150"
+ x="995.4234"
+ height="120"
+ width="2.4489796"
+ id="rect5004"
+ style="fill:#ffffff;fill-opacity:1;stroke:none" />
+ <g
+ id="g3110"
+ transform="matrix(1.5755654,0,0,1.5755654,311.8326,-577.53581)">
+ <path
+ id="rect5052"
+ d="m 32.390622,945.09656 c -2.77,0 -5,2.23 -5,5 l 0,26.875 c 0,2.77 2.23,5 5,5 l 6.125,0 c 0.59442,12.72295 -13.15625,17.15625 -13.15625,17.15625 0,0 17.390694,-1.95023 26.1875,-17.15625 l 26.375001,0 c 2.77,0 5,-2.23 5,-5 l 0,-26.875 c 0,-2.77 -2.23,-5 -5,-5 l -45.531251,0 z"
+ style="fill:#333333;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <path
+ id="rect5054"
+ d="m 72.265623,957.22156 c -2.527405,0.25514 -4.46875,2.40313 -4.46875,5 l 0,26.84375 c 0,2.77 2.23,5 5,5 l 26.46875,0 c 9.101617,13.30139 24.875007,15.06249 24.875007,15.06249 0,0 -12.23293,-3.9401 -13.125,-15.06249 l 7.3125,0 c 2.76999,0 5,-2.23 5,-5 l 0,-26.84375 c 0,-2.77 -2.23001,-5 -5,-5 l -45.531257,0 c -0.173125,0 -0.362756,-0.017 -0.53125,0 z"
+ style="fill:#333333;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ inkscape:connector-curvature="0" />
+ <text
+ sodipodi:linespacing="125%"
+ id="text5062"
+ y="969.25043"
+ x="32.490089"
+ style="font-size:22px;font-style:normal;font-weight:bold;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
+ xml:space="preserve"><tspan
+ y="969.25043"
+ x="32.490089"
+ id="tspan5064"
+ sodipodi:role="line">Q?</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-size:22px;font-style:normal;font-weight:bold;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
+ x="76.490097"
+ y="981.25043"
+ id="text5066"
+ sodipodi:linespacing="125%"><tspan
+ sodipodi:role="line"
+ id="tspan5068"
+ x="76.490097"
+ y="981.25043">a :)</tspan></text>
+ </g>
+ <g
+ id="layer2"
+ inkscape:label="referencia"
+ transform="translate(-577.51401,231.92014)"
+ sodipodi:insensitive="true" />
+ <g
+ transform="translate(200.84331,838.65809)"
+ id="g3194-5"
+ inkscape:label="Layer 1" />
+ <g
+ inkscape:label="Layer 1"
+ id="g7737"
+ transform="translate(415.21682,1076.3667)" />
+ <text
+ xml:space="preserve"
+ style="font-size:40px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
+ x="-225.51039"
+ y="1257.8601"
+ id="text3665"><tspan
+ sodipodi:role="line"
+ id="tspan3667"
+ x="-225.51039"
+ y="1257.8601" /></text>
+ <g
+ id="g4172"
+ transform="translate(1.5e-6,3e-5)">
+ <path
+ style="fill:#333333;fill-opacity:1;stroke:#333333;stroke-width:0.99999994;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0"
+ d="m 25.524669,1109.8529 c 8.306491,0.8372 63.996305,-1.2433 63.168766,8.965 l 0,96.0535 c 1.961973,-10.9892 -51.922942,-10.689 -63.168766,-8.965 -1.655189,0 -2.987712,-1.3328 -2.987712,-2.9883 l 0,-90.0768 c 0,-1.6556 1.332523,-2.9884 2.987712,-2.9884 z"
+ id="path4132"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccssc" />
+ <path
+ sodipodi:nodetypes="ccccssc"
+ inkscape:connector-curvature="0"
+ id="path4134"
+ d="m 28.512381,1112.8412 c 8.306491,0.8373 61.883172,-1.2433 61.055633,8.965 l 0,90.0769 c 1.961973,-10.9893 -49.809809,-10.689 -61.055633,-8.965 -1.65519,0 -2.987712,-1.3328 -2.987712,-2.9884 l 0,-84.1001 c 0,-1.6556 1.332522,-2.9884 2.987712,-2.9884 z"
+ style="fill:#ffffff;fill-opacity:1;stroke:none" />
+ <path
+ sodipodi:nodetypes="ccccssc"
+ inkscape:connector-curvature="0"
+ id="path4136"
+ d="m 154.47533,1109.8529 c -8.30648,0.8372 -63.996297,-1.2434 -63.168772,8.965 l 0,96.0535 c -1.961959,-10.9894 51.922942,-10.689 63.168772,-8.965 1.65519,0 2.98771,-1.3328 2.98771,-2.9883 l 0,-90.0769 c 0,-1.6555 -1.33252,-2.9883 -2.98771,-2.9883 z"
+ style="fill:#333333;fill-opacity:1;stroke:#333333;stroke-width:0.99999994;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0" />
+ <path
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
+ d="m 151.48762,1112.8412 c -8.30649,0.8372 -61.712969,-1.2433 -60.885444,8.965 l 0,90.0769 c -1.961959,-10.9893 49.639614,-10.689 60.885444,-8.965 1.65519,0 2.98771,-1.3328 2.98771,-2.9884 l 0,-84.1002 c 0,-1.6555 -1.33252,-2.9883 -2.98771,-2.9883 z"
+ id="path4138"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccssc" />
+ <text
+ xml:space="preserve"
+ style="font-size:39.04867554px;font-style:normal;font-weight:bold;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#333333;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
+ x="112.25281"
+ y="1169.5217"
+ id="text4140"
+ sodipodi:linespacing="125%"><tspan
+ sodipodi:role="line"
+ id="tspan4142"
+ x="112.25281"
+ y="1169.5217">a</tspan></text>
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#f2f2f2;fill-opacity:1;stroke:none"
+ d="m 84.303848,1117.0438 0,89.2106 c 3.084315,1.211 5.033653,2.7282 5.273314,4.6196 l 0,-89.0799 c 0.165581,-2.0426 -1.880877,-3.5699 -5.273314,-4.7503 z m 5.273314,93.8302 0,1.0023 c 0.06136,-0.3434 0.04072,-0.6808 0,-1.0023 z"
+ id="path4144" />
+ <g
+ id="g4146"
+ transform="matrix(0.53263719,0,0,0.53263719,1.8852057,534.69664)"
+ style="fill:#333333;fill-opacity:1">
+ <g
+ style="font-size:40px;font-style:normal;font-weight:bold;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#333333;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
+ id="g4148"
+ transform="matrix(0.51198286,0,0,0.51198286,-162.67117,761.62088)">
+ <path
+ style="fill:#333333;fill-opacity:1"
+ d="m 463.48633,864.19421 c -1.87503,0.91146 -3.82164,1.59506 -5.83985,2.05079 -2.01825,0.45572 -4.10158,0.68359 -6.25,0.68359 -4.85678,0 -8.70443,-1.35417 -11.54296,-4.0625 -2.83855,-2.72135 -4.25782,-6.40624 -4.25782,-11.05469 0,-4.7005 1.44531,-8.39841 4.33594,-11.09375 2.89062,-2.69528 6.84895,-4.04294 11.875,-4.04297 1.94008,3e-5 3.79555,0.18232 5.56641,0.54688 1.78383,0.36461 3.46351,0.90497 5.03906,1.62109 l 0,6.03516 c -1.62763,-0.92446 -3.24872,-1.61456 -4.86328,-2.07031 -1.60159,-0.45571 -3.20966,-0.68357 -4.82422,-0.6836 -2.99481,3e-5 -5.306,0.83987 -6.93359,2.51953 -1.6146,1.66669 -2.42189,4.05601 -2.42188,7.16797 -1e-5,3.08595 0.78124,5.46876 2.34375,7.14844 1.56249,1.67969 3.78254,2.51954 6.66016,2.51953 0.78123,10e-6 1.50388,-0.0456 2.16797,-0.13672 0.67706,-0.10416 1.28253,-0.26041 1.8164,-0.46875 l 0,-5.66406 -4.58984,0 0,-5.03906 11.71875,0 0,14.02343"
+ id="path4150"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#333333;fill-opacity:1"
+ d="m 469.54102,857.84656 0,-13.35938 7.03125,0 0,2.1875 c -10e-6,1.18492 -0.007,2.6758 -0.0195,4.47266 -0.013,1.78387 -0.0195,2.97527 -0.0195,3.57422 -1e-5,1.75782 0.0456,3.02735 0.13672,3.80859 0.0911,0.76824 0.24739,1.32813 0.46875,1.67969 0.28645,0.45573 0.65754,0.8073 1.11328,1.05469 0.46874,0.2474 1.00259,0.37109 1.60157,0.37109 1.45831,0 2.60415,-0.55989 3.4375,-1.67969 0.83331,-1.11978 1.24998,-2.67577 1.25,-4.66797 l 0,-10.80078 6.99218,0 0,21.875 -6.99218,0 0,-3.16406 c -1.05471,1.27604 -2.1745,2.22005 -3.35938,2.83203 -1.17189,0.59896 -2.46746,0.89844 -3.88672,0.89844 -2.52605,0 -4.45313,-0.77474 -5.78125,-2.32422 -1.31511,-1.54948 -1.97266,-3.80208 -1.97265,-6.75781"
+ id="path4152"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#333333;fill-opacity:1"
+ d="m 498.29102,844.48718 6.99218,0 0,21.875 -6.99218,0 0,-21.875 m 0,-8.51562 6.99218,0 0,5.70312 -6.99218,0 0,-5.70312"
+ id="path4154"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#333333;fill-opacity:1"
+ d="m 517.56836,855.17078 -7.89063,-10.6836 7.40235,0 4.47265,6.48438 4.53125,-6.48438 7.40235,0 -7.89063,10.64453 8.28125,11.23047 -7.40234,0 -4.92188,-6.91406 -4.86328,6.91406 -7.40234,0 8.28125,-11.1914"
+ id="path4156"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 558.42773,838.12 0,6.17187 c -1.60158,-0.71612 -3.16408,-1.25649 -4.6875,-1.62109 -1.52345,-0.36456 -2.96225,-0.54685 -4.3164,-0.54688 -1.79689,3e-5 -3.12501,0.24742 -3.98438,0.74219 -0.85938,0.49481 -1.28907,1.26304 -1.28906,2.30469 -10e-6,0.78127 0.28645,1.39325 0.85938,1.83593 0.58592,0.42971 1.64061,0.8008 3.16406,1.11329 l 3.20312,0.64453 c 3.24217,0.65105 5.54686,1.64064 6.91407,2.96875 1.36716,1.32813 2.05075,3.21615 2.05078,5.66406 -3e-5,3.21615 -0.95706,5.61198 -2.8711,7.1875 -1.90106,1.5625 -4.81121,2.34375 -8.73047,2.34375 -1.84897,0 -3.70443,-0.17578 -5.5664,-0.52734 -1.86199,-0.35157 -3.72397,-0.8724 -5.58594,-1.5625 l 0,-6.34766 c 1.86197,0.98959 3.65885,1.73829 5.39063,2.24609 1.74478,0.4948 3.42446,0.7422 5.03906,0.74219 1.64061,10e-6 2.89712,-0.27343 3.76953,-0.82031 0.87238,-0.54687 1.30857,-1.32812 1.30859,-2.34375 -2e-5,-0.91145 -0.29949,-1.61458 -0.89843,-2.10938 -0.58596,-0.49478 -1.76434,-0.93749 -3.53516,-1.32812 l -2.91016,-0.64453 c -2.91667,-0.62499 -5.05209,-1.62108 -6.40625,-2.98828 -1.34115,-1.36718 -2.01172,-3.20962 -2.01172,-5.52735 0,-2.90362 0.9375,-5.13669 2.8125,-6.69922 1.875,-1.56247 4.57031,-2.34372 8.08594,-2.34375 1.60155,3e-5 3.24868,0.12373 4.94141,0.3711 1.69269,0.2344 3.44399,0.59247 5.2539,1.07422"
+ style="fill:#333333;fill-opacity:1"
+ id="path4158"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 574.48242,842.88562 0,17.79297 2.69531,0 c 3.0729,0 5.41665,-0.76171 7.03125,-2.28516 1.62759,-1.52343 2.44139,-3.73696 2.44141,-6.64062 -2e-5,-2.89061 -0.80731,-5.09113 -2.42187,-6.60156 -1.61461,-1.5104 -3.96487,-2.26561 -7.05079,-2.26563 l -2.69531,0 m -7.51953,-5.68359 7.92969,0 c 4.42707,3e-5 7.72133,0.31904 9.88281,0.95703 2.17446,0.62503 4.03643,1.69273 5.58594,3.20312 1.36716,1.31513 2.38278,2.83206 3.04687,4.55078 0.66403,1.71877 0.99607,3.66539 0.9961,5.83985 -3e-5,2.20053 -0.33207,4.16667 -0.9961,5.89844 -0.66409,1.71875 -1.67971,3.23568 -3.04687,4.55078 -1.56253,1.51042 -3.43753,2.58463 -5.625,3.22265 -2.18752,0.625 -5.46877,0.9375 -9.84375,0.9375 l -7.92969,0 0,-29.16015"
+ style="fill:#333333;fill-opacity:1"
+ id="path4160"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ id="path4162"
+ d="m 138.3176,1133.1795 c -0.81996,1.4986 -1.6524,2.7186 -2.50062,3.6799 -0.81995,0.933 -1.72415,1.6794 -2.71373,2.2449 -0.96134,0.5372 -2.05207,0.9246 -3.26786,1.1508 -1.18752,0.1979 -2.55104,0.2984 -4.10613,0.2984 -1.14711,0 -2.17803,-0.059 -3.08315,-0.1705 -0.004,0 -0.0105,0 -0.0142,0 -0.11475,-0.01 -0.35175,-0.047 -0.59674,-0.085 -0.25804,-0.04 -0.52181,-0.079 -0.93773,-0.1563 -7.62391,-1.4106 -10.15239,3.882 -10.69867,5.3422 -0.0855,0.2286 -0.12787,0.3694 -0.12787,0.3694 l -9.26365,25.8303 -5.683219,9.6615 11.352229,0 c 4.66248,-10.3812 9.14498,-32.0568 13.93811,-33.9715 1.0389,0.1453 2.32665,0.2131 3.87879,0.2131 2.03575,0 3.85847,-0.244 5.47011,-0.753 1.61162,-0.5089 3.06125,-1.2983 4.36187,-2.3728 1.30061,-1.1026 2.47745,-2.5091 3.5236,-4.2055 1.07441,-1.6965 2.09338,-3.7344 3.05473,-6.1095 l -2.58584,-0.9661 z"
+ style="font-size:144px;font-style:normal;font-weight:bold;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#333333;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4164"
+ d="m 138.31731,1133.1806 c -0.81997,1.4985 -1.65234,2.7169 -2.50057,3.6782 -0.81994,0.933 -1.72449,1.6797 -2.71408,2.2452 -0.23807,0.133 -0.48351,0.2553 -0.7374,0.3698 -0.003,10e-4 -0.004,0 -0.007,0.01 -0.31957,0.2247 -0.73061,0.4177 -1.28771,0.5503 -6.42533,1.5299 -10.80183,7.2559 -11.21291,7.8099 0.18639,-0.1533 0.37401,-0.2784 0.56131,-0.3742 0.0281,-0.015 0.0554,-0.028 0.0836,-0.042 0.005,0 0.009,-0.01 0.0132,-0.01 0.0327,-0.015 0.0664,-0.029 0.0991,-0.042 1.03889,0.1453 2.32636,0.2135 3.87851,0.2135 2.03575,0 3.85835,-0.2461 5.46999,-0.755 1.61162,-0.509 3.05995,-1.2963 4.36058,-2.3707 1.30061,-1.1027 2.47797,-2.51 3.52413,-4.2065 1.07441,-1.6965 2.09392,-3.7355 3.05526,-6.1106 l -2.58642,-0.9641 z"
+ style="font-size:144px;font-style:normal;font-weight:bold;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#333333;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold" />
+ <path
+ id="path4166"
+ d="m 63.68261,1133.1795 c 0.819966,1.4986 1.652394,2.7186 2.500616,3.6799 0.819956,0.933 1.724149,1.6794 2.71374,2.2449 0.961325,0.5372 2.052063,0.9246 3.267848,1.1508 1.187524,0.198 2.551047,0.2984 4.106128,0.2984 1.147124,0 2.178037,-0.059 3.083146,-0.1705 0.0036,0 0.01055,0 0.01423,0 0.11474,-0.01 0.351742,-0.047 0.596737,-0.085 0.258044,-0.04 0.521812,-0.079 0.937732,-0.1563 7.623911,-1.4106 10.15239,3.882 10.69867,5.3422 0.0855,0.2286 0.127868,0.3694 0.127868,0.3694 l 9.263655,25.8303 5.68322,9.6615 -11.352233,0 c -4.662474,-10.3812 -9.144977,-32.0568 -13.938104,-33.9715 -1.0389,0.1453 -2.326655,0.2131 -3.878802,0.2131 -2.035747,0 -3.858467,-0.244 -5.470102,-0.753 -1.611625,-0.5089 -3.061258,-1.2983 -4.361874,-2.3728 -1.300605,-1.1026 -2.477444,-2.5091 -3.523594,-4.2055 -1.074416,-1.6965 -2.093395,-3.7344 -3.054735,-6.1095 l 2.585866,-0.9661 z"
+ style="font-size:144px;font-style:normal;font-weight:bold;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#333333;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccc"
+ d="m 100.99058,1171.6793 -5.660922,9.6655 11.346562,0"
+ style="font-size:144px;font-style:normal;font-weight:bold;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#333333;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
+ id="path4168"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4170"
+ d="m 63.683378,1133.1806 -2.586415,0.9641 c 0.300417,0.7422 0.606296,1.4523 0.917904,2.1285 0.06232,0.1353 0.124335,0.2681 0.187099,0.4007 2.46e-4,5e-4 -2.41e-4,0 0,0 0.06249,0.1319 0.126383,0.2624 0.189305,0.3918 0.02094,0.043 0.0428,0.085 0.06383,0.1276 0.105535,0.2151 0.21021,0.4285 0.316974,0.6362 4.87e-4,10e-4 0.0015,10e-4 0.002,0 0.06364,0.1237 0.127433,0.2464 0.191507,0.3676 0.258429,0.4886 0.52039,0.9562 0.785833,1.4021 0.06628,0.1114 0.131385,0.2193 0.198106,0.328 0.02585,0.042 0.0511,0.084 0.07704,0.1255 0.04127,0.066 0.08401,0.1326 0.125467,0.1981 0.06538,0.106 0.129501,0.211 0.195905,0.3148 0.105801,0.1653 0.215202,0.3269 0.323578,0.4864 0.02734,0.04 0.05391,0.081 0.08144,0.1211 0.06878,0.1 0.137125,0.1976 0.206913,0.295 0.138886,0.1938 0.279737,0.3832 0.422632,0.5679 0.07145,0.092 0.143273,0.1829 0.215719,0.2729 0.144901,0.18 0.291369,0.3554 0.440243,0.5261 0.112867,0.1295 0.228242,0.2567 0.343387,0.3808 0.03635,0.039 0.07345,0.078 0.110056,0.1167 0.153185,0.1618 0.307333,0.3187 0.464456,0.471 0.07837,0.076 0.15618,0.1509 0.235527,0.2246 0.07973,0.074 0.159222,0.1462 0.239931,0.2179 0.08032,0.071 0.160844,0.1402 0.242132,0.2091 0.243867,0.2015 0.493981,0.3931 0.748411,0.5745 0.678475,0.4839 1.394749,0.897 2.150574,1.2393 0.09448,0.043 0.188241,0.085 0.283951,0.1255 0.192034,0.082 0.38627,0.1585 0.583322,0.2311 0.09821,0.036 0.195496,0.07 0.294964,0.1034 0.09946,0.034 0.200835,0.067 0.301563,0.099 0.100722,0.032 0.201388,0.063 0.303764,0.092 0.204753,0.059 0.41378,0.116 0.625142,0.1673 0.105678,0.026 0.211843,0.049 0.31917,0.073 0.107332,0.024 0.214597,0.047 0.323578,0.068 0.109682,0.022 0.218827,0.042 0.330183,0.062 0.221274,0.039 0.445666,0.074 0.673565,0.1057 0.341851,0.047 0.690997,0.086 1.047773,0.1144 0.237851,0.019 0.479702,0.035 0.724194,0.046 0.244493,0.011 0.492866,0.018 0.744009,0.022 0.125569,0 0.251368,0 0.378606,0 0.194016,0 0.384325,0 0.570108,0 0.371577,0 0.726376,-0.013 1.065385,-0.026 0.168755,-0.01 0.334494,-0.013 0.495272,-0.022 0.161454,-0.01 0.31979,-0.02 0.473256,-0.031 0.460396,-0.033 0.884906,-0.075 1.274495,-0.1298 0.03266,0.013 0.06641,0.027 0.09905,0.042 0.0046,0 0.0087,0.01 0.01321,0.01 0.02821,0.013 0.05548,0.027 0.08365,0.042 0.187401,0.096 0.374802,0.2208 0.561302,0.3742 -0.410211,-0.5528 -4.78684,-6.2799 -11.212921,-7.8099 -0.557089,-0.1326 -0.968134,-0.3255 -1.287698,-0.5503 -0.0026,-10e-4 -0.0041,0 -0.0066,-0.01 -0.253309,-0.1142 -0.499828,-0.2371 -0.737404,-0.3698 -4.86e-4,-2e-4 -0.0015,3e-4 -0.002,0 -0.06131,-0.035 -0.122056,-0.071 -0.182701,-0.1078 -4.86e-4,-3e-4 -0.0015,2e-4 -0.002,0 -0.06118,-0.037 -0.119983,-0.074 -0.180499,-0.1123 -0.12153,-0.077 -0.242148,-0.1553 -0.360994,-0.2377 -0.05919,-0.041 -0.117577,-0.083 -0.176097,-0.1255 -0.117858,-0.085 -0.232619,-0.1729 -0.34779,-0.2642 -0.05719,-0.045 -0.112964,-0.09 -0.169492,-0.1364 -0.05695,-0.047 -0.113214,-0.095 -0.169492,-0.1431 -0.05587,-0.048 -0.109881,-0.098 -0.165089,-0.1475 -0.27603,-0.2481 -0.54391,-0.5125 -0.803439,-0.7968 -0.05191,-0.057 -0.105038,-0.1156 -0.156288,-0.1739 -0.188604,-0.2138 -0.37642,-0.4406 -0.563503,-0.6802 -0.0233,-0.03 -0.045,-0.06 -0.06824,-0.09 -0.05253,-0.068 -0.106072,-0.1366 -0.158489,-0.2069 -0.262084,-0.3515 -0.522115,-0.7297 -0.781424,-1.1336 -0.103723,-0.1616 -0.207066,-0.3274 -0.310369,-0.4975 -0.05165,-0.085 -0.102535,-0.1704 -0.154081,-0.2575 -0.154153,-0.2607 -0.308992,-0.5322 -0.462254,-0.8123 z"
+ style="font-size:144px;font-style:normal;font-weight:bold;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#333333;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold" />
+ </g>
+ </g>
+ <g
+ id="g4213"
+ transform="translate(-280,0)">
+ <path
+ style="fill:#333333;fill-opacity:1;stroke:#333333;stroke-width:0.99999994;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0"
+ d="m 25.524669,909.85291 c 8.306491,0.83723 63.996305,-1.24334 63.168766,8.965 l 0,96.05349 c 1.961973,-10.9892 -51.922942,-10.689 -63.168766,-8.965 -1.655189,0 -2.987712,-1.3328 -2.987712,-2.9883 l 0,-90.07685 c 0,-1.65554 1.332523,-2.98834 2.987712,-2.98834 z"
+ id="path4215"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccssc" />
+ <path
+ sodipodi:nodetypes="ccccssc"
+ inkscape:connector-curvature="0"
+ id="path4217"
+ d="m 28.512381,912.84123 c 8.306491,0.83724 61.883172,-1.24333 61.055633,8.96501 l 0,90.07686 c 1.961973,-10.9893 -49.809809,-10.689 -61.055633,-8.965 -1.65519,0 -2.987712,-1.3328 -2.987712,-2.98837 l 0,-84.10016 c 0,-1.65553 1.332522,-2.98834 2.987712,-2.98834 z"
+ style="fill:#ffffff;fill-opacity:1;stroke:none" />
+ <path
+ sodipodi:nodetypes="ccccssc"
+ inkscape:connector-curvature="0"
+ id="path4219"
+ d="m 154.47533,909.85287 c -8.30648,0.83723 -63.996297,-1.24334 -63.168772,8.965 l 0,96.05353 c -1.961959,-10.9894 51.922942,-10.689 63.168772,-8.965 1.65519,0 2.98771,-1.3328 2.98771,-2.9883 l 0,-90.07689 c 0,-1.65554 -1.33252,-2.98834 -2.98771,-2.98834 z"
+ style="fill:#333333;fill-opacity:1;stroke:#333333;stroke-width:0.99999994;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0" />
+ <path
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
+ d="m 151.48762,912.84121 c -8.30649,0.83721 -61.712969,-1.24334 -60.885444,8.96499 l 0,90.0769 c -1.961959,-10.9893 49.639614,-10.689 60.885444,-8.965 1.65519,0 2.98771,-1.3328 2.98771,-2.98837 l 0,-84.1002 c 0,-1.65554 -1.33252,-2.98832 -2.98771,-2.98832 z"
+ id="path4221"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccssc" />
+ <text
+ xml:space="preserve"
+ style="font-size:39.04867554px;font-style:normal;font-weight:bold;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#333333;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
+ x="112.25281"
+ y="969.52167"
+ id="text4223"
+ sodipodi:linespacing="125%"><tspan
+ sodipodi:role="line"
+ id="tspan4225"
+ x="112.25281"
+ y="969.52167">a</tspan></text>
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#f2f2f2;fill-opacity:1;stroke:none"
+ d="m 84.303848,917.04379 0,89.21061 c 3.084315,1.211 5.033653,2.7282 5.273314,4.6196 l 0,-89.07987 c 0.165581,-2.04266 -1.880877,-3.56991 -5.273314,-4.75034 z m 5.273314,93.83021 0,1.0023 c 0.06136,-0.3434 0.04072,-0.6808 0,-1.0023 z"
+ id="path4227" />
+ <g
+ id="g4229"
+ transform="matrix(0.60731542,0,0,0.60731542,116.86246,366.64596)"
+ style="fill:#333333;fill-opacity:1">
+ <g
+ style="fill:#333333;fill-opacity:1"
+ transform="matrix(0.31714039,0,0,0.31714039,-142.52084,885.30434)"
+ id="g4231">
+ <path
+ inkscape:connector-curvature="0"
+ d="M 111.7542,312.41889 C 76.973768,290.83268 58.800198,264.4135 58.800188,235.73916 c 0,-29.74389 19.65691,-38.98421 31.64708,-38.98422 21.227742,-2e-5 30.080402,13.85396 30.080402,31.57395 -1e-5,15.78704 -8.54348,21.81326 -11.65743,36.52754 -3.08334,17.52975 8.48604,30.83838 11.34409,34.35291 7.64347,9.16923 -0.11959,18.43746 -8.46013,13.20955"
+ style="color:#000000;fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.20000005;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ id="path4233"
+ sodipodi:nodetypes="csssccc" />
+ <path
+ inkscape:connector-curvature="0"
+ d="m 70.810318,176.07399 c 36.084462,-19.32761 68.050912,-21.85681 92.883632,-7.51962 25.75897,14.87195 23.93288,36.51548 17.93779,46.89929 -10.61388,18.38376 -27.03807,19.12336 -42.38406,10.26339 -13.67194,-7.89354 -14.61909,-18.30549 -25.80508,-28.3594 -13.639543,-11.43513 -30.949842,-8.07005 -35.422522,-7.35217 -11.76251,2.0348 -15.90752,-9.32233 -7.20976,-13.93149"
+ style="fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path4235"
+ sodipodi:nodetypes="csssccc" />
+ <path
+ inkscape:connector-curvature="0"
+ d="m 209.34349,208.66892 c -1.30401,40.91386 -15.09689,69.86218 -39.92963,84.19937 -25.75897,14.87197 -43.58976,2.46873 -49.58485,-7.91505 -10.61387,-18.38376 -3.0423,-32.97735 12.30368,-41.83733 13.67195,-7.89351 23.16254,-3.50778 37.46249,-8.16818 16.72284,-6.09464 22.46378,-22.76832 24.07842,-27.0007 4.11907,-11.20408 16.02712,-9.11517 15.66989,0.72189"
+ style="fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="path4237"
+ sodipodi:nodetypes="csssccc" />
+ </g>
+ <g
+ style="fill:#333333;fill-opacity:1"
+ transform="translate(-183.45313,0)"
+ id="g4239">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4241"
+ d="m 71.834548,1005.2148 c -1.025186,0.4984 -2.089509,0.8721 -3.192979,1.1213 -1.103492,0.2492 -2.242567,0.3738 -3.417231,0.3738 -2.655478,0 -4.759207,-0.7404 -6.311193,-2.2212 -1.551997,-1.4879 -2.327993,-3.5027 -2.327993,-6.04426 0,-2.57003 0.790233,-4.59188 2.370705,-6.06558 1.580467,-1.47366 3.744711,-2.21051 6.492739,-2.21052 1.060752,1e-5 2.075243,0.0997 3.043473,0.29901 0.975322,0.19935 1.893698,0.4948 2.755141,0.88634 l 0,3.29977 c -0.889918,-0.50546 -1.77626,-0.88278 -2.659032,-1.13196 -0.87568,-0.24916 -1.754904,-0.37375 -2.637676,-0.37376 -1.637433,10e-6 -2.901092,0.4592 -3.790988,1.37757 -0.882794,0.91127 -1.324185,2.21765 -1.32418,3.91913 -5e-6,1.68726 0.427149,2.99006 1.281462,3.90846 0.854302,0.9184 2.06813,1.3776 3.641489,1.3776 0.427142,0 0.822256,-0.025 1.185352,-0.075 0.370187,-0.057 0.701232,-0.1424 0.99313,-0.2563 l 0,-3.0968 -2.509527,0 0,-2.75518 6.407308,0 0,7.66738"
+ style="font-size:40px;font-style:normal;font-weight:bold;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#333333;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4243"
+ d="m 75.144991,1001.7442 0,-7.30432 3.844385,0 0,1.19603 c -5e-6,0.64786 -0.0038,1.46301 -0.01066,2.44546 -0.0071,0.97534 -0.01066,1.62674 -0.01066,1.95423 -6e-6,0.9611 0.02493,1.6552 0.07475,2.0824 0.04981,0.42 0.135262,0.7261 0.256292,0.9183 0.156619,0.2492 0.359515,0.4414 0.608694,0.5767 0.256287,0.1353 0.548173,0.2029 0.87567,0.2029 0.797341,0 1.423837,-0.3061 1.879476,-0.9184 0.455619,-0.6122 0.683436,-1.463 0.683447,-2.5522 l 0,-5.90542 3.823023,0 0,11.96032 -3.823023,0 0,-1.73 c -0.57667,0.6977 -1.188923,1.2138 -1.836765,1.5484 -0.640739,0.3275 -1.349101,0.4913 -2.125091,0.4913 -1.381135,0 -2.43478,-0.4236 -3.160938,-1.2708 -0.719046,-0.8472 -1.078566,-2.0788 -1.07856,-3.6949"
+ style="font-size:40px;font-style:normal;font-weight:bold;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#333333;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4245"
+ d="m 90.864253,994.43988 3.823023,0 0,11.96032 -3.823023,0 0,-11.96032 m 0,-4.65598 3.823023,0 0,3.11822 -3.823023,0 0,-3.11822"
+ style="font-size:40px;font-style:normal;font-weight:bold;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#333333;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4247"
+ d="m 101.40427,1000.2812 -4.314254,-5.84132 4.047284,0 2.44545,3.54538 2.4775,-3.54538 4.04728,0 -4.31425,5.81992 4.52783,6.1404 -4.04728,0 -2.69108,-3.7803 -2.65903,3.7803 -4.047278,0 4.527828,-6.119"
+ style="font-size:40px;font-style:normal;font-weight:bold;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#333333;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold" />
+ </g>
+ </g>
+ </g>
+ <g
+ id="g4260"
+ transform="translate(-280,180)">
+ <path
+ sodipodi:nodetypes="ccccssc"
+ inkscape:connector-curvature="0"
+ id="rect4855"
+ d="m 25.52467,909.85291 c 8.306492,0.83723 63.996305,-1.24334 63.168766,8.965 l 0,96.05349 c 1.961973,-10.9892 -51.922942,-10.689 -63.168766,-8.965 -1.655189,0 -2.987712,-1.3328 -2.987712,-2.9883 l 0,-90.07685 c 0,-1.65554 1.332523,-2.98834 2.987712,-2.98834 z"
+ style="fill:#333333;fill-opacity:1;stroke:#333333;stroke-width:0.99999994;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0" />
+ <path
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
+ d="m 28.512383,912.84123 c 8.306491,0.83724 61.883172,-1.24333 61.055633,8.96501 l 0,90.07686 c 1.961973,-10.9893 -49.809809,-10.689 -61.055633,-8.965 -1.65519,0 -2.987712,-1.3328 -2.987712,-2.98837 l 0,-84.10016 c 0,-1.65553 1.332522,-2.98834 2.987712,-2.98834 z"
+ id="path4858"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccssc" />
+ <path
+ style="fill:#333333;fill-opacity:1;stroke:#333333;stroke-width:0.99999994;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0"
+ d="m 154.47533,909.85287 c -8.30648,0.83723 -63.996295,-1.24334 -63.16877,8.965 l 0,96.05353 c -1.961959,-10.9894 51.92294,-10.689 63.16877,-8.965 1.65519,0 2.98771,-1.3328 2.98771,-2.9883 l 0,-90.07689 c 0,-1.65554 -1.33252,-2.98834 -2.98771,-2.98834 z"
+ id="path4860"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccssc" />
+ <path
+ sodipodi:nodetypes="ccccssc"
+ inkscape:connector-curvature="0"
+ id="path4862"
+ d="m 151.48762,912.84121 c -8.30649,0.83721 -61.712968,-1.24334 -60.885443,8.96499 l 0,90.0769 c -1.961959,-10.9893 49.639613,-10.689 60.885443,-8.965 1.65519,0 2.98771,-1.3328 2.98771,-2.98837 l 0,-84.1002 c 0,-1.65554 -1.33252,-2.98832 -2.98771,-2.98832 z"
+ style="fill:#ffffff;fill-opacity:1;stroke:none" />
+ <text
+ sodipodi:linespacing="125%"
+ id="text4868"
+ y="969.52167"
+ x="110.25281"
+ style="font-size:39.04867554px;font-style:normal;font-weight:bold;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#333333;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
+ xml:space="preserve"><tspan
+ y="969.52167"
+ x="110.25281"
+ id="tspan4870"
+ sodipodi:role="line">b</tspan></text>
+ <path
+ id="path4876"
+ d="m 84.303849,917.04379 0,89.21061 c 3.084316,1.211 5.033653,2.7282 5.273314,4.6196 l 0,-89.07987 c 0.165582,-2.04266 -1.880877,-3.56991 -5.273314,-4.75034 z m 5.273314,93.83021 0,1.0023 c 0.06136,-0.3434 0.04072,-0.6808 0,-1.0023 z"
+ style="fill:#f2f2f2;fill-opacity:1;stroke:none"
+ inkscape:connector-curvature="0" />
+ <text
+ xml:space="preserve"
+ style="font-size:39.04867554px;font-style:normal;font-weight:bold;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#333333;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
+ x="42.252808"
+ y="969.52167"
+ id="text4256"
+ sodipodi:linespacing="125%"><tspan
+ sodipodi:role="line"
+ id="tspan4258"
+ x="42.252808"
+ y="969.52167">a</tspan></text>
+ </g>
+ </g>
+</svg>
diff --git a/website/static/base/img/installer.svg b/website/static/base/img/installer.svg
new file mode 100644
index 0000000..53a691a
--- /dev/null
+++ b/website/static/base/img/installer.svg
@@ -0,0 +1,267 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="180"
+ height="180"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.48.5 r10040"
+ sodipodi:docname="installer.svg"
+ inkscape:export-filename="GuixSD-package.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <color-profile
+ id="color-profile3838"
+ xlink:href="/usr/share/color/icc/ghostscript/ps_cmyk.icc"
+ name="Artifex-PS-CMYK-Profile" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1"
+ inkscape:cx="20.72426"
+ inkscape:cy="57.858552"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:window-width="1440"
+ inkscape:window-height="834"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:showpageshadow="false"
+ showborder="true"
+ borderlayer="true"
+ inkscape:object-nodes="true"
+ inkscape:snap-global="false">
+ <inkscape:grid
+ type="axonomgrid"
+ id="grid3004"
+ units="mm"
+ empspacing="5"
+ visible="true"
+ enabled="true"
+ snapvisiblegridlinesonly="true"
+ spacingy="3.7mm"
+ originx="-4mm"
+ originy="-8.5mm" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ <dc:date />
+ <dc:creator>
+ <cc:Agent>
+ <dc:title />
+ </cc:Agent>
+ </dc:creator>
+ <dc:rights>
+ <cc:Agent>
+ <dc:title />
+ </cc:Agent>
+ </dc:rights>
+ <cc:license
+ rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+ <dc:description />
+ </cc:Work>
+ <cc:License
+ rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
+ <cc:permits
+ rdf:resource="http://creativecommons.org/ns#Reproduction" />
+ <cc:permits
+ rdf:resource="http://creativecommons.org/ns#Distribution" />
+ <cc:requires
+ rdf:resource="http://creativecommons.org/ns#Notice" />
+ <cc:requires
+ rdf:resource="http://creativecommons.org/ns#Attribution" />
+ <cc:permits
+ rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+ <cc:requires
+ rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+ </cc:License>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="layer"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-872.36218)">
+ <text
+ xml:space="preserve"
+ style="font-size:40px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
+ x="38.808048"
+ y="1244.2922"
+ id="text3665"><tspan
+ sodipodi:role="line"
+ id="tspan3667"
+ x="38.808048"
+ y="1244.2922" /></text>
+ <g
+ id="g3053">
+ <rect
+ style="fill:#333333;fill-opacity:1"
+ id="rect4123"
+ width="117.81"
+ height="104.81"
+ x="-228.905"
+ y="917.54926" />
+ <path
+ sodipodi:nodetypes="cccccccccc"
+ inkscape:connector-curvature="0"
+ id="path4125"
+ d="m -216.90625,902.36511 -12,11.1875 56.90625,0 0,-11.1875 z m 48.90625,0 0,11.1875 56.90625,0 -12,-11.1875 z"
+ style="fill:#333333;fill-opacity:1" />
+ <g
+ transform="translate(-70,-1.3303361)"
+ id="g4380">
+ <g
+ id="g3654"
+ transform="matrix(0.31714039,0,0,0.31714039,-142.52084,885.30434)"
+ style="fill:#ffffff;fill-opacity:1">
+ <path
+ sodipodi:nodetypes="csssccc"
+ id="path2911-9-1"
+ style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.20000005;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ d="M 111.7542,312.41889 C 76.973768,290.83268 58.800198,264.4135 58.800188,235.73916 c 0,-29.74389 19.65691,-38.98421 31.64708,-38.98422 21.227742,-2e-5 30.080402,13.85396 30.080402,31.57395 -1e-5,15.78704 -8.54348,21.81326 -11.65743,36.52754 -3.08334,17.52975 8.48604,30.83838 11.34409,34.35291 7.64347,9.16923 -0.11959,18.43746 -8.46013,13.20955"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="csssccc"
+ id="path2911-9-1-2"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 70.810318,176.07399 c 36.084462,-19.32761 68.050912,-21.85681 92.883632,-7.51962 25.75897,14.87195 23.93288,36.51548 17.93779,46.89929 -10.61388,18.38376 -27.03807,19.12336 -42.38406,10.26339 -13.67194,-7.89354 -14.61909,-18.30549 -25.80508,-28.3594 -13.639543,-11.43513 -30.949842,-8.07005 -35.422522,-7.35217 -11.76251,2.0348 -15.90752,-9.32233 -7.20976,-13.93149"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="csssccc"
+ id="path2911-9-1-2-5"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 209.34349,208.66892 c -1.30401,40.91386 -15.09689,69.86218 -39.92963,84.19937 -25.75897,14.87197 -43.58976,2.46873 -49.58485,-7.91505 -10.61387,-18.38376 -3.0423,-32.97735 12.30368,-41.83733 13.67195,-7.89351 23.16254,-3.50778 37.46249,-8.16818 16.72284,-6.09464 22.46378,-22.76832 24.07842,-27.0007 4.11907,-11.20408 16.02712,-9.11517 15.66989,0.72189"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g4304"
+ transform="translate(-183.45313,0)"
+ style="fill:#ffffff;fill-opacity:1">
+ <path
+ style="font-size:40px;font-style:normal;font-weight:bold;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
+ d="m 71.834548,1005.2148 c -1.025186,0.4984 -2.089509,0.8721 -3.192979,1.1213 -1.103492,0.2492 -2.242567,0.3738 -3.417231,0.3738 -2.655478,0 -4.759207,-0.7404 -6.311193,-2.2212 -1.551997,-1.4879 -2.327993,-3.5027 -2.327993,-6.04426 0,-2.57003 0.790233,-4.59188 2.370705,-6.06558 1.580467,-1.47366 3.744711,-2.21051 6.492739,-2.21052 1.060752,1e-5 2.075243,0.0997 3.043473,0.29901 0.975322,0.19935 1.893698,0.4948 2.755141,0.88634 l 0,3.29977 c -0.889918,-0.50546 -1.77626,-0.88278 -2.659032,-1.13196 -0.87568,-0.24916 -1.754904,-0.37375 -2.637676,-0.37376 -1.637433,10e-6 -2.901092,0.4592 -3.790988,1.37757 -0.882794,0.91127 -1.324185,2.21765 -1.32418,3.91913 -5e-6,1.68726 0.427149,2.99006 1.281462,3.90846 0.854302,0.9184 2.06813,1.3776 3.641489,1.3776 0.427142,0 0.822256,-0.025 1.185352,-0.075 0.370187,-0.057 0.701232,-0.1424 0.99313,-0.2563 l 0,-3.0968 -2.509527,0 0,-2.75518 6.407308,0 0,7.66738"
+ id="path4296"
+ inkscape:connector-curvature="0" />
+ <path
+ style="font-size:40px;font-style:normal;font-weight:bold;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
+ d="m 75.144991,1001.7442 0,-7.30432 3.844385,0 0,1.19603 c -5e-6,0.64786 -0.0038,1.46301 -0.01066,2.44546 -0.0071,0.97534 -0.01066,1.62674 -0.01066,1.95423 -6e-6,0.9611 0.02493,1.6552 0.07475,2.0824 0.04981,0.42 0.135262,0.7261 0.256292,0.9183 0.156619,0.2492 0.359515,0.4414 0.608694,0.5767 0.256287,0.1353 0.548173,0.2029 0.87567,0.2029 0.797341,0 1.423837,-0.3061 1.879476,-0.9184 0.455619,-0.6122 0.683436,-1.463 0.683447,-2.5522 l 0,-5.90542 3.823023,0 0,11.96032 -3.823023,0 0,-1.73 c -0.57667,0.6977 -1.188923,1.2138 -1.836765,1.5484 -0.640739,0.3275 -1.349101,0.4913 -2.125091,0.4913 -1.381135,0 -2.43478,-0.4236 -3.160938,-1.2708 -0.719046,-0.8472 -1.078566,-2.0788 -1.07856,-3.6949"
+ id="path4298"
+ inkscape:connector-curvature="0" />
+ <path
+ style="font-size:40px;font-style:normal;font-weight:bold;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
+ d="m 90.864253,994.43988 3.823023,0 0,11.96032 -3.823023,0 0,-11.96032 m 0,-4.65598 3.823023,0 0,3.11822 -3.823023,0 0,-3.11822"
+ id="path4300"
+ inkscape:connector-curvature="0" />
+ <path
+ style="font-size:40px;font-style:normal;font-weight:bold;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
+ d="m 101.40427,1000.2812 -4.314254,-5.84132 4.047284,0 2.44545,3.54538 2.4775,-3.54538 4.04728,0 -4.31425,5.81992 4.52783,6.1404 -4.04728,0 -2.69108,-3.7803 -2.65903,3.7803 -4.047278,0 4.527828,-6.119"
+ id="path4302"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </g>
+ <rect
+ style="fill:#333333;fill-opacity:1"
+ id="rect3187"
+ width="117.81"
+ height="104.81"
+ x="31.095001"
+ y="917.54926" />
+ <path
+ sodipodi:nodetypes="cccccccccc"
+ inkscape:connector-curvature="0"
+ id="path3189"
+ d="m 43.09375,902.36511 -12,11.1875 56.90625,0 0,-11.1875 z m 48.90625,0 0,11.1875 56.90625,0 -12,-11.1875 z"
+ style="fill:#333333;fill-opacity:1" />
+ <g
+ id="g3171"
+ transform="translate(-11,-199.36973)">
+ <g
+ style="font-size:40px;font-style:normal;font-weight:bold;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
+ id="g4391"
+ transform="matrix(0.51198286,0,0,0.51198286,-162.67117,761.62088)">
+ <path
+ style="fill:#ffffff"
+ d="m 463.48633,864.19421 c -1.87503,0.91146 -3.82164,1.59506 -5.83985,2.05079 -2.01825,0.45572 -4.10158,0.68359 -6.25,0.68359 -4.85678,0 -8.70443,-1.35417 -11.54296,-4.0625 -2.83855,-2.72135 -4.25782,-6.40624 -4.25782,-11.05469 0,-4.7005 1.44531,-8.39841 4.33594,-11.09375 2.89062,-2.69528 6.84895,-4.04294 11.875,-4.04297 1.94008,3e-5 3.79555,0.18232 5.56641,0.54688 1.78383,0.36461 3.46351,0.90497 5.03906,1.62109 l 0,6.03516 c -1.62763,-0.92446 -3.24872,-1.61456 -4.86328,-2.07031 -1.60159,-0.45571 -3.20966,-0.68357 -4.82422,-0.6836 -2.99481,3e-5 -5.306,0.83987 -6.93359,2.51953 -1.6146,1.66669 -2.42189,4.05601 -2.42188,7.16797 -1e-5,3.08595 0.78124,5.46876 2.34375,7.14844 1.56249,1.67969 3.78254,2.51954 6.66016,2.51953 0.78123,10e-6 1.50388,-0.0456 2.16797,-0.13672 0.67706,-0.10416 1.28253,-0.26041 1.8164,-0.46875 l 0,-5.66406 -4.58984,0 0,-5.03906 11.71875,0 0,14.02343"
+ id="path4393"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#ffffff"
+ d="m 469.54102,857.84656 0,-13.35938 7.03125,0 0,2.1875 c -10e-6,1.18492 -0.007,2.6758 -0.0195,4.47266 -0.013,1.78387 -0.0195,2.97527 -0.0195,3.57422 -1e-5,1.75782 0.0456,3.02735 0.13672,3.80859 0.0911,0.76824 0.24739,1.32813 0.46875,1.67969 0.28645,0.45573 0.65754,0.8073 1.11328,1.05469 0.46874,0.2474 1.00259,0.37109 1.60157,0.37109 1.45831,0 2.60415,-0.55989 3.4375,-1.67969 0.83331,-1.11978 1.24998,-2.67577 1.25,-4.66797 l 0,-10.80078 6.99218,0 0,21.875 -6.99218,0 0,-3.16406 c -1.05471,1.27604 -2.1745,2.22005 -3.35938,2.83203 -1.17189,0.59896 -2.46746,0.89844 -3.88672,0.89844 -2.52605,0 -4.45313,-0.77474 -5.78125,-2.32422 -1.31511,-1.54948 -1.97266,-3.80208 -1.97265,-6.75781"
+ id="path4395"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#ffffff"
+ d="m 498.29102,844.48718 6.99218,0 0,21.875 -6.99218,0 0,-21.875 m 0,-8.51562 6.99218,0 0,5.70312 -6.99218,0 0,-5.70312"
+ id="path4397"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#ffffff"
+ d="m 517.56836,855.17078 -7.89063,-10.6836 7.40235,0 4.47265,6.48438 4.53125,-6.48438 7.40235,0 -7.89063,10.64453 8.28125,11.23047 -7.40234,0 -4.92188,-6.91406 -4.86328,6.91406 -7.40234,0 8.28125,-11.1914"
+ id="path4399"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 558.42773,838.12 0,6.17187 c -1.60158,-0.71612 -3.16408,-1.25649 -4.6875,-1.62109 -1.52345,-0.36456 -2.96225,-0.54685 -4.3164,-0.54688 -1.79689,3e-5 -3.12501,0.24742 -3.98438,0.74219 -0.85938,0.49481 -1.28907,1.26304 -1.28906,2.30469 -10e-6,0.78127 0.28645,1.39325 0.85938,1.83593 0.58592,0.42971 1.64061,0.8008 3.16406,1.11329 l 3.20312,0.64453 c 3.24217,0.65105 5.54686,1.64064 6.91407,2.96875 1.36716,1.32813 2.05075,3.21615 2.05078,5.66406 -3e-5,3.21615 -0.95706,5.61198 -2.8711,7.1875 -1.90106,1.5625 -4.81121,2.34375 -8.73047,2.34375 -1.84897,0 -3.70443,-0.17578 -5.5664,-0.52734 -1.86199,-0.35157 -3.72397,-0.8724 -5.58594,-1.5625 l 0,-6.34766 c 1.86197,0.98959 3.65885,1.73829 5.39063,2.24609 1.74478,0.4948 3.42446,0.7422 5.03906,0.74219 1.64061,10e-6 2.89712,-0.27343 3.76953,-0.82031 0.87238,-0.54687 1.30857,-1.32812 1.30859,-2.34375 -2e-5,-0.91145 -0.29949,-1.61458 -0.89843,-2.10938 -0.58596,-0.49478 -1.76434,-0.93749 -3.53516,-1.32812 l -2.91016,-0.64453 c -2.91667,-0.62499 -5.05209,-1.62108 -6.40625,-2.98828 -1.34115,-1.36718 -2.01172,-3.20962 -2.01172,-5.52735 0,-2.90362 0.9375,-5.13669 2.8125,-6.69922 1.875,-1.56247 4.57031,-2.34372 8.08594,-2.34375 1.60155,3e-5 3.24868,0.12373 4.94141,0.3711 1.69269,0.2344 3.44399,0.59247 5.2539,1.07422"
+ style="fill:#ffffff"
+ id="path4401"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 574.48242,842.88562 0,17.79297 2.69531,0 c 3.0729,0 5.41665,-0.76171 7.03125,-2.28516 1.62759,-1.52343 2.44139,-3.73696 2.44141,-6.64062 -2e-5,-2.89061 -0.80731,-5.09113 -2.42187,-6.60156 -1.61461,-1.5104 -3.96487,-2.26561 -7.05079,-2.26563 l -2.69531,0 m -7.51953,-5.68359 7.92969,0 c 4.42707,3e-5 7.72133,0.31904 9.88281,0.95703 2.17446,0.62503 4.03643,1.69273 5.58594,3.20312 1.36716,1.31513 2.38278,2.83206 3.04687,4.55078 0.66403,1.71877 0.99607,3.66539 0.9961,5.83985 -3e-5,2.20053 -0.33207,4.16667 -0.9961,5.89844 -0.66409,1.71875 -1.67971,3.23568 -3.04687,4.55078 -1.56253,1.51042 -3.43753,2.58463 -5.625,3.22265 -2.18752,0.625 -5.46877,0.9375 -9.84375,0.9375 l -7.92969,0 0,-29.16015"
+ style="fill:#ffffff"
+ id="path4403"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ id="path4405"
+ d="m 138.3176,1133.1795 c -0.81996,1.4986 -1.6524,2.7186 -2.50062,3.6799 -0.81995,0.933 -1.72415,1.6794 -2.71373,2.2449 -0.96134,0.5372 -2.05207,0.9246 -3.26786,1.1508 -1.18752,0.1979 -2.55104,0.2984 -4.10613,0.2984 -1.14711,0 -2.17803,-0.059 -3.08315,-0.1705 -0.004,0 -0.0105,0 -0.0142,0 -0.11475,-0.01 -0.35175,-0.047 -0.59674,-0.085 -0.25804,-0.04 -0.52181,-0.079 -0.93773,-0.1563 -7.62391,-1.4106 -10.15239,3.882 -10.69867,5.3422 -0.0855,0.2286 -0.12787,0.3694 -0.12787,0.3694 l -9.26365,25.8303 -5.683219,9.6615 11.352229,0 c 4.66248,-10.3812 9.14498,-32.0568 13.93811,-33.9715 1.0389,0.1453 2.32665,0.2131 3.87879,0.2131 2.03575,0 3.85847,-0.244 5.47011,-0.753 1.61162,-0.5089 3.06125,-1.2983 4.36187,-2.3728 1.30061,-1.1026 2.47745,-2.5091 3.5236,-4.2055 1.07441,-1.6965 2.09338,-3.7344 3.05473,-6.1095 l -2.58584,-0.9661 z"
+ style="font-size:144px;font-style:normal;font-weight:bold;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4407"
+ d="m 138.31731,1133.1806 c -0.81997,1.4985 -1.65234,2.7169 -2.50057,3.6782 -0.81994,0.933 -1.72449,1.6797 -2.71408,2.2452 -0.23807,0.133 -0.48351,0.2553 -0.7374,0.3698 -0.003,10e-4 -0.004,0 -0.007,0.01 -0.31957,0.2247 -0.73061,0.4177 -1.28771,0.5503 -6.42533,1.5299 -10.80183,7.2559 -11.21291,7.8099 0.18639,-0.1533 0.37401,-0.2784 0.56131,-0.3742 0.0281,-0.015 0.0554,-0.028 0.0836,-0.042 0.005,0 0.009,-0.01 0.0132,-0.01 0.0327,-0.015 0.0664,-0.029 0.0991,-0.042 1.03889,0.1453 2.32636,0.2135 3.87851,0.2135 2.03575,0 3.85835,-0.2461 5.46999,-0.755 1.61162,-0.509 3.05995,-1.2963 4.36058,-2.3707 1.30061,-1.1027 2.47797,-2.51 3.52413,-4.2065 1.07441,-1.6965 2.09392,-3.7355 3.05526,-6.1106 l -2.58642,-0.9641 z"
+ style="font-size:144px;font-style:normal;font-weight:bold;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold" />
+ <path
+ id="path4409"
+ d="m 63.68261,1133.1795 c 0.819966,1.4986 1.652394,2.7186 2.500616,3.6799 0.819956,0.933 1.724149,1.6794 2.71374,2.2449 0.961325,0.5372 2.052063,0.9246 3.267848,1.1508 1.187524,0.198 2.551047,0.2984 4.106128,0.2984 1.147124,0 2.178037,-0.059 3.083146,-0.1705 0.0036,0 0.01055,0 0.01423,0 0.11474,-0.01 0.351742,-0.047 0.596737,-0.085 0.258044,-0.04 0.521812,-0.079 0.937732,-0.1563 7.623911,-1.4106 10.15239,3.882 10.69867,5.3422 0.0855,0.2286 0.127868,0.3694 0.127868,0.3694 l 9.263655,25.8303 5.68322,9.6615 -11.352233,0 c -4.662474,-10.3812 -9.144977,-32.0568 -13.938104,-33.9715 -1.0389,0.1453 -2.326655,0.2131 -3.878802,0.2131 -2.035747,0 -3.858467,-0.244 -5.470102,-0.753 -1.611625,-0.5089 -3.061258,-1.2983 -4.361874,-2.3728 -1.300605,-1.1026 -2.477444,-2.5091 -3.523594,-4.2055 -1.074416,-1.6965 -2.093395,-3.7344 -3.054735,-6.1095 l 2.585866,-0.9661 z"
+ style="font-size:144px;font-style:normal;font-weight:bold;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccc"
+ d="m 100.99058,1171.6793 -5.660922,9.6655 11.346562,0"
+ style="font-size:144px;font-style:normal;font-weight:bold;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
+ id="path4413"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4415"
+ d="m 63.683378,1133.1806 -2.586415,0.9641 c 0.300417,0.7422 0.606296,1.4523 0.917904,2.1285 0.06232,0.1353 0.124335,0.2681 0.187099,0.4007 2.46e-4,5e-4 -2.41e-4,0 0,0 0.06249,0.1319 0.126383,0.2624 0.189305,0.3918 0.02094,0.043 0.0428,0.085 0.06383,0.1276 0.105535,0.2151 0.21021,0.4285 0.316974,0.6362 4.87e-4,10e-4 0.0015,10e-4 0.002,0 0.06364,0.1237 0.127433,0.2464 0.191507,0.3676 0.258429,0.4886 0.52039,0.9562 0.785833,1.4021 0.06628,0.1114 0.131385,0.2193 0.198106,0.328 0.02585,0.042 0.0511,0.084 0.07704,0.1255 0.04127,0.066 0.08401,0.1326 0.125467,0.1981 0.06538,0.106 0.129501,0.211 0.195905,0.3148 0.105801,0.1653 0.215202,0.3269 0.323578,0.4864 0.02734,0.04 0.05391,0.081 0.08144,0.1211 0.06878,0.1 0.137125,0.1976 0.206913,0.295 0.138886,0.1938 0.279737,0.3832 0.422632,0.5679 0.07145,0.092 0.143273,0.1829 0.215719,0.2729 0.144901,0.18 0.291369,0.3554 0.440243,0.5261 0.112867,0.1295 0.228242,0.2567 0.343387,0.3808 0.03635,0.039 0.07345,0.078 0.110056,0.1167 0.153185,0.1618 0.307333,0.3187 0.464456,0.471 0.07837,0.076 0.15618,0.1509 0.235527,0.2246 0.07973,0.074 0.159222,0.1462 0.239931,0.2179 0.08032,0.071 0.160844,0.1402 0.242132,0.2091 0.243867,0.2015 0.493981,0.3931 0.748411,0.5745 0.678475,0.4839 1.394749,0.897 2.150574,1.2393 0.09448,0.043 0.188241,0.085 0.283951,0.1255 0.192034,0.082 0.38627,0.1585 0.583322,0.2311 0.09821,0.036 0.195496,0.07 0.294964,0.1034 0.09946,0.034 0.200835,0.067 0.301563,0.099 0.100722,0.032 0.201388,0.063 0.303764,0.092 0.204753,0.059 0.41378,0.116 0.625142,0.1673 0.105678,0.026 0.211843,0.049 0.31917,0.073 0.107332,0.024 0.214597,0.047 0.323578,0.068 0.109682,0.022 0.218827,0.042 0.330183,0.062 0.221274,0.039 0.445666,0.074 0.673565,0.1057 0.341851,0.047 0.690997,0.086 1.047773,0.1144 0.237851,0.019 0.479702,0.035 0.724194,0.046 0.244493,0.011 0.492866,0.018 0.744009,0.022 0.125569,0 0.251368,0 0.378606,0 0.194016,0 0.384325,0 0.570108,0 0.371577,0 0.726376,-0.013 1.065385,-0.026 0.168755,-0.01 0.334494,-0.013 0.495272,-0.022 0.161454,-0.01 0.31979,-0.02 0.473256,-0.031 0.460396,-0.033 0.884906,-0.075 1.274495,-0.1298 0.03266,0.013 0.06641,0.027 0.09905,0.042 0.0046,0 0.0087,0.01 0.01321,0.01 0.02821,0.013 0.05548,0.027 0.08365,0.042 0.187401,0.096 0.374802,0.2208 0.561302,0.3742 -0.410211,-0.5528 -4.78684,-6.2799 -11.212921,-7.8099 -0.557089,-0.1326 -0.968134,-0.3255 -1.287698,-0.5503 -0.0026,-10e-4 -0.0041,0 -0.0066,-0.01 -0.253309,-0.1142 -0.499828,-0.2371 -0.737404,-0.3698 -4.86e-4,-2e-4 -0.0015,3e-4 -0.002,0 -0.06131,-0.035 -0.122056,-0.071 -0.182701,-0.1078 -4.86e-4,-3e-4 -0.0015,2e-4 -0.002,0 -0.06118,-0.037 -0.119983,-0.074 -0.180499,-0.1123 -0.12153,-0.077 -0.242148,-0.1553 -0.360994,-0.2377 -0.05919,-0.041 -0.117577,-0.083 -0.176097,-0.1255 -0.117858,-0.085 -0.232619,-0.1729 -0.34779,-0.2642 -0.05719,-0.045 -0.112964,-0.09 -0.169492,-0.1364 -0.05695,-0.047 -0.113214,-0.095 -0.169492,-0.1431 -0.05587,-0.048 -0.109881,-0.098 -0.165089,-0.1475 -0.27603,-0.2481 -0.54391,-0.5125 -0.803439,-0.7968 -0.05191,-0.057 -0.105038,-0.1156 -0.156288,-0.1739 -0.188604,-0.2138 -0.37642,-0.4406 -0.563503,-0.6802 -0.0233,-0.03 -0.045,-0.06 -0.06824,-0.09 -0.05253,-0.068 -0.106072,-0.1366 -0.158489,-0.2069 -0.262084,-0.3515 -0.522115,-0.7297 -0.781424,-1.1336 -0.103723,-0.1616 -0.207066,-0.3274 -0.310369,-0.4975 -0.05165,-0.085 -0.102535,-0.1704 -0.154081,-0.2575 -0.154153,-0.2607 -0.308992,-0.5322 -0.462254,-0.8123 z"
+ style="font-size:144px;font-style:normal;font-weight:bold;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold" />
+ </g>
+ </g>
+</svg>
diff --git a/website/static/base/img/library-icon.png b/website/static/base/img/library-icon.png
new file mode 100644
index 0000000..daac95c
--- /dev/null
+++ b/website/static/base/img/library-icon.png
Binary files differ
diff --git a/website/static/base/img/link-arrow.png b/website/static/base/img/link-arrow.png
new file mode 100644
index 0000000..6d2309e
--- /dev/null
+++ b/website/static/base/img/link-arrow.png
Binary files differ
diff --git a/website/static/base/img/manual-icon.png b/website/static/base/img/manual-icon.png
new file mode 100644
index 0000000..1a6b04f
--- /dev/null
+++ b/website/static/base/img/manual-icon.png
Binary files differ
diff --git a/website/static/base/img/more-info-bg.png b/website/static/base/img/more-info-bg.png
new file mode 100644
index 0000000..2521f0d
--- /dev/null
+++ b/website/static/base/img/more-info-bg.png
Binary files differ
diff --git a/website/static/base/img/msg-info-bg.png b/website/static/base/img/msg-info-bg.png
new file mode 100644
index 0000000..dd6ed27
--- /dev/null
+++ b/website/static/base/img/msg-info-bg.png
Binary files differ
diff --git a/website/static/base/img/red-btn-bg.png b/website/static/base/img/red-btn-bg.png
new file mode 100644
index 0000000..454f541
--- /dev/null
+++ b/website/static/base/img/red-btn-bg.png
Binary files differ
diff --git a/website/static/base/img/screenshots/emacs-ui-generations-thumb.png b/website/static/base/img/screenshots/emacs-ui-generations-thumb.png
new file mode 100644
index 0000000..c11c611
--- /dev/null
+++ b/website/static/base/img/screenshots/emacs-ui-generations-thumb.png
Binary files differ
diff --git a/website/static/base/img/screenshots/emacs-ui-packages-thumb.png b/website/static/base/img/screenshots/emacs-ui-packages-thumb.png
new file mode 100644
index 0000000..e1632ab
--- /dev/null
+++ b/website/static/base/img/screenshots/emacs-ui-packages-thumb.png
Binary files differ
diff --git a/website/static/base/img/screenshots/grub-menu-thumb.png b/website/static/base/img/screenshots/grub-menu-thumb.png
new file mode 100644
index 0000000..41ade6b
--- /dev/null
+++ b/website/static/base/img/screenshots/grub-menu-thumb.png
Binary files differ
diff --git a/website/static/base/img/screenshots/slim-thumb.png b/website/static/base/img/screenshots/slim-thumb.png
new file mode 100644
index 0000000..9be13d3
--- /dev/null
+++ b/website/static/base/img/screenshots/slim-thumb.png
Binary files differ
diff --git a/website/static/base/img/screenshots/user-interfaces-thumb.png b/website/static/base/img/screenshots/user-interfaces-thumb.png
new file mode 100644
index 0000000..1a06db3
--- /dev/null
+++ b/website/static/base/img/screenshots/user-interfaces-thumb.png
Binary files differ
diff --git a/website/static/base/img/screenshots/windowmaker+icecat+inkscape-thumb.png b/website/static/base/img/screenshots/windowmaker+icecat+inkscape-thumb.png
new file mode 100644
index 0000000..200bca5
--- /dev/null
+++ b/website/static/base/img/screenshots/windowmaker+icecat+inkscape-thumb.png
Binary files differ
diff --git a/website/static/base/img/the-emacs-of-distros.png b/website/static/base/img/the-emacs-of-distros.png
new file mode 100644
index 0000000..70ec8ac
--- /dev/null
+++ b/website/static/base/img/the-emacs-of-distros.png
Binary files differ
diff --git a/website/static/base/img/white-star.png b/website/static/base/img/white-star.png
new file mode 100644
index 0000000..5771b11
--- /dev/null
+++ b/website/static/base/img/white-star.png
Binary files differ