sass-site/source/blog.html.haml
Natalie Weizenbaum 193a124050 Move the blog onto sass-lang.com
Logdown seems to be basically unmaintained, its servers are
unreliable, and it's been causing some mixed-content errors lately.
This moves all blog posts to sass-lang.com itself; I'll set up
redirects from the blog as best I can once this lands.

Closes #401
Closes #402
Closes #403
2019-12-18 16:00:40 -08:00

18 lines
421 B
Plaintext

---
title: Sass Blog
pageable: true
per_page: 5
---
- if paginate && num_pages > 1
%p Page #{page_number} of #{num_pages}
%p= link_to 'Previous page', prev_page if prev_page
- page_articles.each_with_index do |article, i|
%h2= link_to article.title, article
= partial 'layouts/components/attribution', locals: {page: article}
= article.summary
- if paginate
%p= link_to 'Next page', next_page if next_page