From c64837579789fb79201160605b7a6a35d7852967 Mon Sep 17 00:00:00 2001 From: Andrew Senetar Date: Mon, 29 Jul 2013 11:29:57 -0400 Subject: [PATCH] Update site to test pelican-red --- .gitignore | 2 + 404.html | 151 ++ archives.html | 170 ++- author/andrew-senetar.html | 150 ++ authors.html | 126 ++ categories.html | 188 ++- category/projects.html | 149 ++ favicon.ico | Bin 0 -> 90022 bytes feeds/all.atom.xml | 2 - feeds/cat.projects.atom.xml | 6 + feeds/cat.projects.rss.xml | 6 + feeds/index.atom.xml | 6 + feeds/index.rss.xml | 6 + index.html | 193 ++- pages/about.html | 260 ++++ pelican-red.html | 134 ++ robots.txt | 5 + sitemap.xml | 62 + tags.html | 125 ++ theme/config.rb | 26 + theme/css/app.css | 867 +++++++++++ theme/css/main.css | 447 ------ theme/css/pygment.css | 205 --- theme/css/reset.css | 52 - theme/css/typogrify.css | 3 - theme/css/wide.css | 48 - theme/fonts/fontello_config.json | 247 ++++ theme/fonts/pelican-red.eot | Bin 0 -> 17584 bytes theme/fonts/pelican-red.svg | 51 + theme/fonts/pelican-red.ttf | Bin 0 -> 17412 bytes theme/fonts/pelican-red.woff | Bin 0 -> 11316 bytes theme/images/icons/aboutme.png | Bin 751 -> 0 bytes theme/images/icons/bitbucket.png | Bin 3714 -> 0 bytes theme/images/icons/delicious.png | Bin 958 -> 0 bytes theme/images/icons/facebook.png | Bin 202 -> 0 bytes theme/images/icons/github.png | Bin 346 -> 0 bytes theme/images/icons/gitorious.png | Bin 227 -> 0 bytes theme/images/icons/gittip.png | Bin 487 -> 0 bytes theme/images/icons/google-groups.png | Bin 803 -> 0 bytes theme/images/icons/google-plus.png | Bin 527 -> 0 bytes theme/images/icons/hackernews.png | Bin 3273 -> 0 bytes theme/images/icons/lastfm.png | Bin 975 -> 0 bytes theme/images/icons/linkedin.png | Bin 896 -> 0 bytes theme/images/icons/reddit.png | Bin 693 -> 0 bytes theme/images/icons/rss.png | Bin 879 -> 0 bytes theme/images/icons/slideshare.png | Bin 535 -> 0 bytes theme/images/icons/speakerdeck.png | Bin 1049 -> 0 bytes theme/images/icons/twitter.png | Bin 830 -> 0 bytes theme/images/icons/vimeo.png | Bin 544 -> 0 bytes theme/images/icons/youtube.png | Bin 458 -> 0 bytes theme/js/app.js | 52 + theme/js/vendor/custom.modernizr.js | 4 + theme/js/vendor/foundation.min.js | 15 + theme/js/vendor/jquery.min.js | 6 + theme/js/vendor/zepto.min.js | 2 + theme/sass/_foundationSettings.scss | 1269 +++++++++++++++++ theme/sass/_normalize.scss | 402 ++++++ theme/sass/app.scss | 231 +++ .../voltaicideas/pelican-red/_iconList.scss | 43 + .../pelican-red/_iconSettings.scss | 61 + .../sass/voltaicideas/pelican-red/_icons.scss | 136 ++ .../pelican-red/_pygments-github.scss | 65 + .../voltaicideas/pelican-red/_pygments.scss | 52 + 63 files changed, 5126 insertions(+), 899 deletions(-) create mode 100644 404.html create mode 100644 author/andrew-senetar.html create mode 100644 authors.html create mode 100644 category/projects.html create mode 100644 favicon.ico delete mode 100644 feeds/all.atom.xml create mode 100644 feeds/cat.projects.atom.xml create mode 100644 feeds/cat.projects.rss.xml create mode 100644 feeds/index.atom.xml create mode 100644 feeds/index.rss.xml create mode 100644 pages/about.html create mode 100644 pelican-red.html create mode 100644 robots.txt create mode 100644 sitemap.xml create mode 100644 theme/config.rb create mode 100644 theme/css/app.css delete mode 100644 theme/css/main.css delete mode 100644 theme/css/pygment.css delete mode 100644 theme/css/reset.css delete mode 100644 theme/css/typogrify.css delete mode 100644 theme/css/wide.css create mode 100644 theme/fonts/fontello_config.json create mode 100644 theme/fonts/pelican-red.eot create mode 100644 theme/fonts/pelican-red.svg create mode 100644 theme/fonts/pelican-red.ttf create mode 100644 theme/fonts/pelican-red.woff delete mode 100644 theme/images/icons/aboutme.png delete mode 100644 theme/images/icons/bitbucket.png delete mode 100644 theme/images/icons/delicious.png delete mode 100644 theme/images/icons/facebook.png delete mode 100644 theme/images/icons/github.png delete mode 100644 theme/images/icons/gitorious.png delete mode 100644 theme/images/icons/gittip.png delete mode 100644 theme/images/icons/google-groups.png delete mode 100644 theme/images/icons/google-plus.png delete mode 100644 theme/images/icons/hackernews.png delete mode 100644 theme/images/icons/lastfm.png delete mode 100644 theme/images/icons/linkedin.png delete mode 100644 theme/images/icons/reddit.png delete mode 100644 theme/images/icons/rss.png delete mode 100644 theme/images/icons/slideshare.png delete mode 100644 theme/images/icons/speakerdeck.png delete mode 100644 theme/images/icons/twitter.png delete mode 100644 theme/images/icons/vimeo.png delete mode 100644 theme/images/icons/youtube.png create mode 100644 theme/js/app.js create mode 100644 theme/js/vendor/custom.modernizr.js create mode 100644 theme/js/vendor/foundation.min.js create mode 100644 theme/js/vendor/jquery.min.js create mode 100644 theme/js/vendor/zepto.min.js create mode 100644 theme/sass/_foundationSettings.scss create mode 100644 theme/sass/_normalize.scss create mode 100644 theme/sass/app.scss create mode 100644 theme/sass/voltaicideas/pelican-red/_iconList.scss create mode 100644 theme/sass/voltaicideas/pelican-red/_iconSettings.scss create mode 100644 theme/sass/voltaicideas/pelican-red/_icons.scss create mode 100644 theme/sass/voltaicideas/pelican-red/_pygments-github.scss create mode 100644 theme/sass/voltaicideas/pelican-red/_pygments.scss diff --git a/.gitignore b/.gitignore index fb56b20..4e0db55 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ +*/sass_cahce/* + ############# ## Windows ############# diff --git a/404.html b/404.html new file mode 100644 index 0000000..8ac97c8 --- /dev/null +++ b/404.html @@ -0,0 +1,151 @@ + + + + + + + + + + + + + VoltaicIdeas - 404 + + + + + + + + + + + + + + + + + + + + +
+
+
+
+

404

+ +
+

!( Page or Article )

+

The url you have tried is not a page or article on this site. Maybe going back to the index will help.

+
+ +
+ + + comments powered by Disqus +
+
+
+
+ +
+
+ + + + + + + + + \ No newline at end of file diff --git a/archives.html b/archives.html index e3cffba..2ce026f 100644 --- a/archives.html +++ b/archives.html @@ -1,56 +1,128 @@ - + + - - VoltaicIdeas - - + + + + + + + + + VoltaicIdeas - Archives + + + + + + + + + + + + + - + + - - - -
-

Archives for VoltaicIdeas

- -
+ + + +
+
+
+
+

Archives

+ +
+
+
pelican-red
+
Published: 2013-07-10 21:23 by Andrew Senetar
+
Last modified on: 2013-07-29 2:30
+
Category: projects
-
-
- - -
+
+ +
+ +
+ + + + + + + + + \ No newline at end of file diff --git a/author/andrew-senetar.html b/author/andrew-senetar.html new file mode 100644 index 0000000..c19dc8f --- /dev/null +++ b/author/andrew-senetar.html @@ -0,0 +1,150 @@ + + + + + + + + + + + + + VoltaicIdeas - Andrew Senetar + + + + + + + + + + + + + + + + + + + + +
+
+
+
+

Andrew Senetar

+ +
+ Author vcard here? +
    +
  • +
    +
    + +
    +
    +
    +

    Pelican-Red

    +
    Category: projects
    +
    +
    +

    pelican-red is a theme for the pelican static website generator with lots of stuff and

    +

    more stuff and more stuff and more stuff and more stuff and more stuff and ...

    + +
    +
    +
      +
    • Published by Andrew Senetar on: 2013-07-10 21:23
    • +
    • Last Modified on: 2013-07-29 2:30
    • +
    +
    +
    +
    +
+ + +
+
+
+ +
+
+ + + + + + + + + \ No newline at end of file diff --git a/authors.html b/authors.html new file mode 100644 index 0000000..0f6479c --- /dev/null +++ b/authors.html @@ -0,0 +1,126 @@ + + + + + + + + + + + + + VoltaicIdeas + + + + + + + + + + + + + + + + + + + + +
+
+
+
+

Authors

+ +
+

Authors

+
    +Andrew Senetar +
+
+
+
+ +
+
+ + + + + + + + + \ No newline at end of file diff --git a/categories.html b/categories.html index 70d0a97..33df707 100644 --- a/categories.html +++ b/categories.html @@ -1,52 +1,150 @@ - + + - - VoltaicIdeas - - + + + + + + + + + VoltaicIdeas - Categories + + + + + + + + + + + + + - + + - - - -