-
Notifications
You must be signed in to change notification settings - Fork 43
Home Sidebar Courses
Ray Villalobos edited this page Feb 8, 2020
·
3 revisions
<sidebar class="col-12 col-lg-3">
<header class="mb-4">
<h4 class="text-secondary mt-2 mb-0">Latest Courses</h4>
<div class="small">» <a class="text-muted" href="/courses">more courses</a></div>
</header>
{%- for item in courses -%}
<article class="row mb-5">
<div class="col">
<img class="img-fluid rounded" src="{{item.thumbnail}}" alt="{{item.title}}">
<time class="item-date small d-block text-muted mb-2" datetime="{{item.date}}">{{item.date | courseDate}}</time>
<h5>{{item.title}}</h5>
<p class="mb-0" style="font-size: .9em">{{item.summary}}</p>
<div class="text-right">
<a href="{{ item.url | url }}" class="btn btn-sm btn-outline-secondary stretched-link">watch</a>
</div>
</div>
</article>
{%- endfor -%}
</sidebar>