1

Make the downloads page a thing

This commit is contained in:
Evan Pratten 2020-09-17 12:00:51 -04:00
parent 914a5f9b8a
commit 6df7b61500
No known key found for this signature in database
GPG Key ID: 93AC7B3D071356D3
6 changed files with 59 additions and 24 deletions

14
_data/downloads.json Normal file
View File

@ -0,0 +1,14 @@
[
{
"title": "My client-side Minecraft modpack",
"subtitle": "For Minecraft 1.16.2 with Fabric. Can cross-play to other mc versions using runtime network protocol translation",
"date": "2020-09-17",
"src": "https://ewpratten.keybase.pub/minecraft-modpacks/1.16-client-side-modpack-v1.zip"
},
{
"title": "CMD.bmp",
"subtitle": "A batch script embedded in a bitmap for bypassing CMD.exe restrictions on school-issued computers",
"date": "2018-03-17",
"src": "https://ewpratten.keybase.pub/CommandPrompt.bmp?dl=1"
}
]

View File

@ -118,6 +118,26 @@
"img_src": "/assets/images/projects/ultralight.jp2"
}
},
{
"title": "Not Enough Reviews",
"description": "Not Enough Reviews (NER) is a GitHub frontend webapp I built to let me browse discussions and changes in a visual style I like. This project was inspired by old text-based software mailing lists, and made more modern with a nice touch of CSS.",
"text_buttons": [
{
"text": "Open App",
"url": "https://ner.retrylife.ca",
"color": "primary"
}
],
"icon_buttons": [
{
"icon": "fab fa-github",
"url": "https://github.com/Ewpratten/ner"
}
],
"hero": {
"img_src": "/assets/images/projects/ner-search.jp2"
}
},
{
"title": "SmallTools",
"description": "SmallTools is a collection of programs and tools that are too small to get their own GitHub repository. I mainly use these as a learning tool for trying out new languages, libraries, and ideas.",

View File

@ -10,8 +10,8 @@
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav ml-auto">
<a class="nav-item nav-link" href="{{site.baseurl}}/blog">Blog</a>
<a class="nav-item nav-link" href="{{site.baseurl}}/papers">Papers</a>
<a class="nav-item nav-link" href="{{site.baseurl}}/events">Events</a>
<a class="nav-item nav-link" href="{{site.baseurl}}/downloads">Downloads</a>
<a class="nav-item nav-link" href="{{site.baseurl}}/about">About</a>
</div>
</div>

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB

View File

@ -1,37 +1,40 @@
---
title: My Papers
title: Downloads
layout: page
header_red: true
backing_img: /assets/images/innovation__monochromatic.svg
backing_scalar: "height:90%;"
---
## Files
Here are links to various downloadable files
<div class="list-group" id="posts">
{% 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;">{{file.date}}</small>
</div>
<p class="card-text">{{file.subtitle}}</p>
</a>
{% endfor %}
</div>
---
## Papers
I have recently started publishing some small papers I have written. As of now, these are mostly from presentations I have given, or are from my school notes.
<div class="list-group" id="posts">
{% assign i = 0 %}
{% for paper in site.papers %}
{% if i == 0 %}
<a href="{{paper.src}}" class="list-group-item list-group-item-action">
<div class="d-flex w-100 justify-content-between">
<div class="card-body">
<h5 class="mb-1">{{paper.title}}</h5>
<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>
</div>
<small style="color:gray;">{{paper.date}}</small>
</div>
</a>
{% else %}
<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>
@ -44,7 +47,5 @@ I have recently started publishing some small papers I have written. As of now,
{% endfor %}</p>
</a>
{% endif %}
{% assign i = i | plus:1 %}
{% endfor %}
</div>