Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 706 Bytes

release-history.md

File metadata and controls

19 lines (16 loc) · 706 Bytes
layout title permalink description
page
Release History
/release-history/
Jekyll's built-in [blogging feature](http://import.jekyllrb.com/) could be a good way to communicate changes and updates to the design system. See [Material Design's What's New page](https://material.io/guidelines/material-design/whats-new.html) for inspiration.
{% for post in site.posts %}
	<div class="c-block">
		<h2 class="c-block__heading"><a href="{{ post.url | prepend: site.baseurl }}" class="c-block__link">{{ post.title }}</a></h2>
		<div class="c-block__desc">
			{{ post.content }}
		</div><!--end c-block__desc-->
	</div><!--end c-block-->
{% endfor %}