[gimp-web/gimp-web-static] Added Typogrify and extended meta.md



commit 2f666c1231d444cd39693036dcc5723163db6dc5
Author: Pat David <pat patdavid net>
Date:   Sun Aug 2 10:57:22 2015 -0500

    Added Typogrify and extended meta.md

 content/pages/meta.md              |   26 +++++++++++++++++++++++++-
 pelicanconf.py                     |    2 +-
 themes/newgimp/static/css/page.css |    4 ++--
 3 files changed, 28 insertions(+), 4 deletions(-)
---
diff --git a/content/pages/meta.md b/content/pages/meta.md
index 8191a00..bafcf24 100644
--- a/content/pages/meta.md
+++ b/content/pages/meta.md
@@ -42,9 +42,33 @@ In particular, the main ways to accomplish this include:
 1. Writing new content in a simplified format, such as [Markdown] or [reStructuredText][] (*the official 
documentation was hosted on sourceforge as part of docutils... so this link is to the Sphinx project*).  
 Contributors who may be able to write quality material may *not* be comfortable writing in pure HTML.
 
-2. Ease the requirements to build and test the site locally.
+2. Ease the requirements to build and test the site locally.  
+We want the contributor to be able to test changes and submissions locally for both their own work as well 
as to make sure nothing is going to break horribly when pushed up to [WGO].
+
+Taking a look at the proposed static site workflow...
+
+
+
+### Python & Pelican
+
+After talking with schumaml, I learned that the server environment already has Python (it's what was used on 
the old website).
+So after some research I found the most ubiquitous Python Static Site Generator (SSG) to be [Pelican].
+Leveraging the existing language and infrastructure makes the most sense.
+
+For detailed information refer to [the documentation](http://docs.getpelican.com/en/3.6.2/) for Pelican.
+
+
+*Pelican webserver*:  
+`python -m pelican.server`  
+`localhost:8000`
+
+
+
+
 
 
 [WGO Redesign]: http://wiki.gimp.org/index.php?title=WGO_Redesign
 [Markdown]: http://daringfireball.net/projects/markdown/ 
 [reStructuredText]: http://sphinx-doc.org/rest.html
+[WGO]: http://www.gimp.org "The GIMP Website"
+[Pelican]: http://blog.getpelican.com/ 
diff --git a/pelicanconf.py b/pelicanconf.py
index 8cf601a..6abb547 100644
--- a/pelicanconf.py
+++ b/pelicanconf.py
@@ -42,4 +42,4 @@ PAGE_SAVE_AS = "{slug}/index.html"
 ARTICLE_URL = "news/{date:%Y}/{date:%m}/{date:%d}/{slug}/"
 ARTICLE_SAVE_AS = "news/{date:%Y}/{date:%m}/{date:%d}/{slug}/index.html"
 
-TYPOGRIFY = False
+TYPOGRIFY = True
diff --git a/themes/newgimp/static/css/page.css b/themes/newgimp/static/css/page.css
index 8465c52..d135b22 100644
--- a/themes/newgimp/static/css/page.css
+++ b/themes/newgimp/static/css/page.css
@@ -16,7 +16,7 @@
     max-width: 33rem;
     margin: 0 auto;
     display: block;
-    color: #666;
+    color: #555;
     margin-bottom: 1.5rem;
     font-weight: 300;
 }
@@ -24,7 +24,7 @@
 .page_content p {
     max-width: 34rem;
     margin-bottom: 1rem;
-    color: #666;
+    color: #555;
 }
 
 .page_content blockquote {



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]