All Projects → joshosbrn → Jekyons

joshosbrn / Jekyons

Open source prototyping kit powered by Jekyll & Tachyons.

Projects that are alternatives of or similar to Jekyons

Resume Template
📄💼🎩 A simple Jekyll + GitHub Pages powered resume template.
Stars: ✭ 1,214 (+1219.57%)
Mutual labels:  jekyll
Dotx
💎 Simple & Beautiful Jekyll theme
Stars: ✭ 83 (-9.78%)
Mutual labels:  jekyll
Butane Jekyll Theme
Butane Jekyll Theme
Stars: ✭ 88 (-4.35%)
Mutual labels:  jekyll
Jokecamp.com
personal blog and website
Stars: ✭ 79 (-14.13%)
Mutual labels:  jekyll
Jekyll Docs Theme
A mediocre Jekyll theme for writing documentation websites based Bootstrap's old website design
Stars: ✭ 81 (-11.96%)
Mutual labels:  jekyll
Garth
🥁 A really basic theme for Jekyll
Stars: ✭ 85 (-7.61%)
Mutual labels:  jekyll
Buildtimes
✏️ Musings on building (and breaking) websites
Stars: ✭ 76 (-17.39%)
Mutual labels:  jekyll
Brew.sh
🔖 The Homebrew homepage
Stars: ✭ 91 (-1.09%)
Mutual labels:  jekyll
Starving Artist Jekyll Theme
A portfolio theme for Jekyll for artists to display their work - http://chrisanthropic.github.io/starving-artist-jekyll-theme/
Stars: ✭ 83 (-9.78%)
Mutual labels:  jekyll
Opendefinition
Open Definition source
Stars: ✭ 87 (-5.43%)
Mutual labels:  jekyll
Heckle
✒️ Jekyll in Haskell (feat. LaTeX)
Stars: ✭ 80 (-13.04%)
Mutual labels:  jekyll
Autm Rb
Jekyll theme
Stars: ✭ 80 (-13.04%)
Mutual labels:  jekyll
Minetest.github.io
Official Minetest website hosted by Github Pages
Stars: ✭ 85 (-7.61%)
Mutual labels:  jekyll
Jekyll Cloudinary
Jekyll plugin adding a Liquid tag for Cloudinary, for better responsive images
Stars: ✭ 79 (-14.13%)
Mutual labels:  jekyll
Jekyll Cv Crafter
Jekyll based CV generator
Stars: ✭ 89 (-3.26%)
Mutual labels:  jekyll
Documentation
Documentation for Codeship CI & CD service
Stars: ✭ 78 (-15.22%)
Mutual labels:  jekyll
Jekyll Seo Gem
💎 🔎 A gem version of @bhardin's SEO Jekyll tool
Stars: ✭ 84 (-8.7%)
Mutual labels:  jekyll
Laraduoshuo
Laravel 5 实现的私有评论系统,用于 Hexo、Jekyll 等静态博客系统
Stars: ✭ 92 (+0%)
Mutual labels:  jekyll
Changelog
Jekyll powered static site to host your product's changelog. Demo -
Stars: ✭ 91 (-1.09%)
Mutual labels:  jekyll
Emoji For Jekyll
A plugin for Jekyll that seamlessly enable emoji.
Stars: ✭ 86 (-6.52%)
Mutual labels:  jekyll

jekyons

Stop writing CSS and start building prototypes.

huh?

Jekyons is a starting point you can use to build Very Good prototypes with Jekyll (a powerful static site generator) and Tachyons (a life-changing functional CSS library). A few friends asked to check out my prototyping stack so I cleaned it up a little bit and here we are. I've already fumbled around integrating cool stuff like BrowserSync (actual magic) and 18F's jekyll-get plugin so you don't have to.

why do I care?

GR8 question. Writing CSS is hard. Maintaining CSS across a team of developers and multiple projects is absolutely impossible. That makes prototyping, something that should feel natural in concept, a real bummer in practice. The power of Jekyll templating and the maintainability of Tachyons is the closest I've come to solving that problem.

Still don't get it? For example, take the list of features on the Jekyons website. Responsive columns, multiple repeating elements in each bucket, images; this could easily amount to over 50 lines of HTML and possibly even more CSS. With Jekyll & Tachyons, I was able to design & build it in ~20 minutes with less than 10 lines of code total:

<div class="ma4 ma5-ns">
  {% for feature in site.data.features %}
  <div class="w-33-l pr4 mb5 fl-l mt4 cf-4th p-fix">
    <img class="w2" src="{{ feature.icon }}">
    <h2 class="normal">{{ feature.name }}</h2>
    <p class="lh-copy f5">{{ feature.description }}</p>
  </div>
  {% endfor %}
</div>

DAMN Y'ALL. If you don't think that's cool you can LEAVE.

ok, how?

git clone https://github.com/tinychime/jekyons.git your-project
cd your-project
npm install
bundle install
jekyll build
gulp

This is very in alpha, so if you have any trouble with the steps above, let me know on Twitter!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].