1
ewpratten.com/downloads.md

1.3 KiB

title layout header_red backing_img backing_scalar
Downloads page true /assets/images/innovation__monochromatic.svg height:90%;

Files

Here are links to various downloadable files

{% for file in site.data.downloads %}

<a href="{{file.src}}" class="list-group-item list-group-item-action">
    <div class="d-flex w-100 justify-content-between">
        <h5 class="mb-1">{{file.title}}</h5>
        <small style="color:gray;" class="maybe-date">{{file.date}}</small>
    </div>
    <p class="card-text">{{file.subtitle}}</p>
</a>

{% endfor %}
---

Lecture Notes & Papers

Finished lecture notes and papers.

{% for paper in site.papers %}

<a href="{{paper.src}}" class="list-group-item list-group-item-action">
    <div class="d-flex w-100 justify-content-between">
        <h5 class="mb-1">{{paper.title}}</h5>
        <small style="color:gray;" class="maybe-date">{{paper.date}}</small>
    </div>
    <p class="card-text">{{paper.subtitle}}</p>
    <p class="card-text">
    {% for author in paper.authors %}
        <span class="badge badge-secondary">{{author}}</span>
    {% endfor %}</p>
</a>

{% endfor %}