-
-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b1e8e93
commit dd3612c
Showing
4 changed files
with
45 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<div class="book-authors"> | ||
{% for author in include.authors %} | ||
<div class="book-author"> | ||
<div class="book-author-icon"> | ||
<img class="book-author-icon" src="{{ author.image }}" /> | ||
</div> | ||
<p class="small"> | ||
{{ author.description }} | ||
</p> | ||
</div> | ||
{% endfor %} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
title: Book Authors | ||
type: components | ||
module: _includes/components/book-authors.html | ||
|
||
authors: | ||
- image: /assets/learning/george.png | ||
description: | | ||
Lorem ipsum dolor sit amet. | ||
- image: /assets/learning/guilherme.jpg | ||
description: | | ||
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Quia quos autem | ||
veniam libero! Deleniti nemo quas optio voluptas voluptatibus sint ratione. | ||
Id vel error quia ipsam sit saepe hic at amet excepturi ea. | ||
--- | ||
{% include components/book-authors.html authors=page.authors %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
--- | ||
title: Hex Icon | ||
type: elements | ||
module: _includes/elements/hex-icon.html | ||
--- | ||
{% include elements/hex-icon.html file='icons/folder.svg' %} |