diff --git a/_data/navigation.yml b/_data/navigation.yml
index c37a16fe6..0facddefb 100644
--- a/_data/navigation.yml
+++ b/_data/navigation.yml
@@ -52,6 +52,13 @@ docs:
url: "/docs/bugs/"
- title: Get involved
url: /docs/get-involved/
+ children:
+ - title: "Bug Reports"
+ - title: "Documentation"
+ - title: "Localization"
+ url: /docs/help/localize/
+ - title: "Developing Ink/Stitch"
+
tutorials:
diff --git a/_docs/006-get-involved.md b/_docs/006-000-get-involved.md
similarity index 100%
rename from _docs/006-get-involved.md
rename to _docs/006-000-get-involved.md
diff --git a/_docs/006-003-localize.md b/_docs/006-003-localize.md
new file mode 100644
index 000000000..85b34b1bd
--- /dev/null
+++ b/_docs/006-003-localize.md
@@ -0,0 +1,26 @@
+---
+title: "Ink/Stitch Localization"
+permalink: /docs/help/localize/
+excerpt: ""
+last_modified_at: 2018-04-14
+toc: false
+---
+The goal of the ink/stitch project is to put free, high-quality embroidery design tools in the hands of folks that might normally not have access to such tools. To further that goal, we seek to support as many languages and locales as possible.
+
+Ink/stitch supports displaying text in the user's preferred language in the Params dialog and in error messages displayed by the Embroider extension. Future work will add translations for the extension settings window (displayed by Inkscape) and project documentation (such as this file).
+
+## Help wanted!
+
+Want to help translate? We'd really appreciate your contributions! Ink/stitch uses a the collaborative translation platform CrowdIn to facilitate community translations. Through their generous open source program, we're able to use their platform free of charge, and we greatly appreciate their support.
+
+To start translating, visit our project page on CrowdIn. It's easy to sign in using your GitHub account. Pick a language and start suggesting translations!
+
+Approved contributors can accept your translations, which causes them to be submitted to this GitHub repository as a pull request. If you'd like to become an approver, please ping [**@lexelby**](https://github.com/lexelby) or another approved contributor, or email **inkstitch-l10n** at **lex** dot **gd**.
+
+**Please note that our [code of conduct](CODE_OF_CONDUCT.md) also covers contributions and interactions on our CrowdIn page.**
+
+## Continuous Translation
+
+When new code is added to ink/stitch, user-facing text can change and new messages can be added. CrowdIn picks these changes up automatically and makes the new messages available to translators.
+
+When CrowdIn creates a pull request, our [Travis-CI](http://travis-ci.org) integration (also generously provided for free!) picks up the new translations and builds a new version of ink/stitch as a development release. Once Travis-CI finishes building, the new version is posted to our releases page [here](https://github.com/lexelby/inkstitch/releases/tag/dev-build-l10n), and you can install it and make sure everything looks right before we merge.
diff --git a/_pages/category-archive.md b/_pages/category-archive.md
new file mode 100644
index 000000000..4cb3860e9
--- /dev/null
+++ b/_pages/category-archive.md
@@ -0,0 +1,6 @@
+---
+title: "Posts by Category"
+layout: categories
+permalink: /categories/
+author_profile: true
+---
diff --git a/_pages/news.md b/_pages/news.md
new file mode 100644
index 000000000..8abcc38a1
--- /dev/null
+++ b/_pages/news.md
@@ -0,0 +1,5 @@
+---
+title: "News"
+permalink: /news/
+layout: posts
+---
diff --git a/_pages/sitemap.md b/_pages/sitemap.md
new file mode 100644
index 000000000..bbd7a2b85
--- /dev/null
+++ b/_pages/sitemap.md
@@ -0,0 +1,35 @@
+---
+layout: archive
+title: "Sitemap"
+permalink: /sitemap/
+author_profile: false
+---
+
+A list of all the posts and pages found on the site. For you robots out there is an [XML version]({{ "sitemap.xml" | relative_url }}) available for digesting as well.
+
+
Pages
+{% for post in site.pages %}
+ {% include archive-single.html %}
+{% endfor %}
+
+
Posts
+{% for post in site.posts %}
+ {% include archive-single.html %}
+{% endfor %}
+
+{% capture written_label %}'None'{% endcapture %}
+
+{% for collection in site.collections %}
+{% unless collection.output == false or collection.label == "posts" %}
+ {% capture label %}{{ collection.label }}{% endcapture %}
+ {% if label != written_label %}
+
{{ label }}
+ {% capture written_label %}{{ label }}{% endcapture %}
+ {% endif %}
+{% endunless %}
+{% for post in collection.docs %}
+ {% unless collection.output == false or collection.label == "posts" %}
+ {% include archive-single.html %}
+ {% endunless %}
+{% endfor %}
+{% endfor %}
diff --git a/_posts/2017-12-06-video-demo.md b/_posts/2017-12-06-video-demo.md
new file mode 100644
index 000000000..7594e9ec6
--- /dev/null
+++ b/_posts/2017-12-06-video-demo.md
@@ -0,0 +1,9 @@
+---
+layout: single
+title: "Video Demo on how to use the extension"
+date: 2017-12-06 06:00:00 -0600
+categories: tutorial
+---
+
+{% include video id="qXntE1X1RIw" provider="youtube" %}
+
diff --git a/_posts/2018-01-01-video-stitch-preview.md b/_posts/2018-01-01-video-stitch-preview.md
new file mode 100644
index 000000000..c2394d397
--- /dev/null
+++ b/_posts/2018-01-01-video-stitch-preview.md
@@ -0,0 +1,8 @@
+---
+layout: single
+title: "Video Demo of the New Live Stitch Preview Feature"
+date: 2018-01-01 06:00:00 -0600
+categories: tutorial
+---
+
+{% include video id="QY9NcLN3oJM" provider="youtube" %}
diff --git a/_posts/2018-01-05-dpi.md b/_posts/2018-01-05-dpi.md
new file mode 100644
index 000000000..49d428663
--- /dev/null
+++ b/_posts/2018-01-05-dpi.md
@@ -0,0 +1,9 @@
+---
+layout: single
+title: "Default DPI changed to 96, to match Inkscape."
+date: 2018-01-05 00:00:00 -0600
+categories: information
+---
+
+Default DPI changed to 96, to match Inkscape.
+
diff --git a/_posts/2018-02-05-translation.md b/_posts/2018-02-05-translation.md
new file mode 100644
index 000000000..31cda8818
--- /dev/null
+++ b/_posts/2018-02-05-translation.md
@@ -0,0 +1,8 @@
+---
+layout: single
+title: "Portuguese (pt_PT) translation added! Want to help translate?"
+date: 2018-02-05 06:00:00 -0600
+categories: help
+---
+
+February 5, 2018: Portuguese (pt_PT) translation added! [Want to help translate](/docs/help/localize/)?
diff --git a/_posts/2018-02-22-windows-support.md b/_posts/2018-02-22-windows-support.md
new file mode 100644
index 000000000..810940408
--- /dev/null
+++ b/_posts/2018-02-22-windows-support.md
@@ -0,0 +1,9 @@
+---
+layout: single
+title: "Windows Support Added"
+date: 2018-02-22 00:00:00 -0600
+categories: information
+---
+
+Get the [latest release](https://github.com/lexelby/inkstitch/releases/latest).
+
diff --git a/_posts/2018-04-16-new-website.md b/_posts/2018-04-16-new-website.md
new file mode 100644
index 000000000..909502ea4
--- /dev/null
+++ b/_posts/2018-04-16-new-website.md
@@ -0,0 +1,10 @@
+---
+layout: single
+title: "Website for Documentation"
+date: 2018-04-15 00:00:00 -0600
+categories: information
+---
+
+We created a new website to help you understand Ink/Stitch.
+If you already have an understanding of it, you are welcome to help us. More information: [#121](https://github.com/lexelby/inkstitch/issues/121)
+
diff --git a/_tutorials/001-tutorials.md b/_tutorials/001-tutorials.md
index dc590da5f..08a80c28f 100644
--- a/_tutorials/001-tutorials.md
+++ b/_tutorials/001-tutorials.md
@@ -1,6 +1,7 @@
---
title: "Tutorials"
permalink: /tutorials/
+excerpt: ""
last_modified_at: 2018-04-14
---
diff --git a/_tutorials/004-embroidery-tutorials.md b/_tutorials/004-embroidery-tutorials.md
index 7681ebcaf..535ee34cb 100644
--- a/_tutorials/004-embroidery-tutorials.md
+++ b/_tutorials/004-embroidery-tutorials.md
@@ -1,7 +1,7 @@
---
title: "Machine Embroidery Tutorials"
permalink: /tutorials/embroidery-tutorials/
-excerpt: "How to quickly install Ink/Stitch."
+excerpt: ""
last_modified_at: 2018-04-14
toc: true
---
diff --git a/assets/css/main.scss b/assets/css/main.scss
index 4c82cfa4a..d6fe27afa 100644
--- a/assets/css/main.scss
+++ b/assets/css/main.scss
@@ -43,6 +43,15 @@ div.highlighter-rouge, figure.highlight {
font-size: .6rem;
}
+a:hover, a:active, .page__taxonomy-item:hover {
+ color: #ffd555;
+ text-decoration: none;
+}
+
+p a:visited {
+ color: #f74004;
+}
+
/* Table of Contents */
.toc .nav__title {
background: #808080;
@@ -142,3 +151,8 @@ div.highlighter-rouge, figure.highlight {
.pagination--pager.disabled {
background: #cccccc;
}
+
+/* Archive */
+ .archive__item-title {
+ overflow: inherit;
+ }
diff --git a/index.html b/index.html
index 9ea915d8b..8618dc527 100644
--- a/index.html
+++ b/index.html
@@ -2,15 +2,7 @@
title: "Ink/Stitch"
layout: splash
permalink: /
-header:
- overlay_color: "#000"
- overlay_filter: "0.5"
- overlay_image: /assets/images/home.jpg
- cta_label: "Download"
- cta_url: "https://github.com/lexelby/inkstitch/releases/latest"
-excerpt: "An Inkscape extension for designing machine embroidery patterns !!! There is a lot to do here, if you have the skills the will and the time to contribute some documentation on inkStitch please tell us how you can help in this issue > [#121](https://github.com/lexelby/inkstitch/issues/121)"
-intro:
- - excerpt: 'This is the main page. The design is not quiet finished. Images are example images of the minimal mistakes theme.'
+excerpt: "Ink/Stitch - an Inkscape extension for designing machine embroidery patterns."
feature_row:
- image_path: assets/images/unsplash-gallery-image-1-th.jpg
alt: "Quick Setup"
@@ -33,7 +25,21 @@ feature_row:
btn_label: "Read More"
btn_class: "btn--primary"
---
+
-{% include feature_row id="intro" type="center" %}
+
Ink/Stitch
+
An Inkscape extension for designing machine embroidery patterns.