forked from jadlimcaco/design-systems-repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbooks.html
37 lines (33 loc) · 1.63 KB
/
books.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
---
layout: default
title: Books
permalink: /books/
description: A list of good books on the subject of design systems. If you have any recommendations, please send me a tweet at @jadlimcaco and I will add it to the list.
---
<article class="post post-books">
<header class="post-header clearfix">
<div class="post-head-wrap">
<div class="post-head-content">
<h1 class="post-title">{{ page.title | escape }}</h1>
<p>A list of good books on the subject of design systems. If you have any recommendations, please send me a tweet at <a href="https://twitter.com/jadlimcaco" title="My Twitter">@jadlimcaco</a> and I will add it to the list.</p>
</div>
<img class="illustration" src="{{ site.baseurl }}/images/illustration-books.svg" width="94" height="86" alt="Design System Books" />
</div>
</header>
<div class="post-content">
{%- assign books = site.books | sort: 'title' %}
{%- for book in books %}
<!-- Block -->
<a class="block block-books" href="{{ book.link }}" title="{{ book.title }}" target="_blank">
<div class="img-wrap">
<img src="{{ site.baseurl }}/images/loader-books.gif" data-echo="{{ site.baseurl }}/{{ book.image }}" alt="{{ book.title }}" width="800" height="400" />
</div>
<div class="content">
<h3>{{ book.author }}</h3>
<h2>{{ book.title }}</h2>
<p class="clamp">{{ book.description }}</p>
</div>
</a>
{% endfor %}
</div>
</article>