add citations section
This commit is contained in:
parent
2f451ce822
commit
265f734e99
4 changed files with 56 additions and 2 deletions
20
src/_data/citations.json
Normal file
20
src/_data/citations.json
Normal file
|
@ -0,0 +1,20 @@
|
|||
[
|
||||
{
|
||||
"title": "Queer Memes: Forms and Communities of Composition",
|
||||
"authors": "Abbie Levesque DeCamp",
|
||||
"year": "2023",
|
||||
"publisher": "Northeastern University Boston",
|
||||
"link": "https://repository.library.northeastern.edu/files/neu:4f22t092c",
|
||||
"pdf": "https://repository.library.northeastern.edu/files/neu:4f22t092c/fulltext.pdf",
|
||||
"doi": "https://doi.org/10.17760/D20618644"
|
||||
},
|
||||
{
|
||||
"title": "Singular Purpose: Calculating the Degree of Ethno-Religious Over-representation in the US No-Fly List",
|
||||
"authors": "Matteo Garofalo",
|
||||
"year": "2024",
|
||||
"publisher": "International Journal for Crime, Justice and Social Democracy",
|
||||
"link": "https://www.crimejusticejournal.com/article/view/3069",
|
||||
"pdf": "https://www.crimejusticejournal.com/article/view/3069/1445",
|
||||
"doi": "https://doi.org/10.5204/ijcjsd.3069"
|
||||
}
|
||||
]
|
|
@ -7,6 +7,10 @@
|
|||
"name": "blog",
|
||||
"link": "/posts/"
|
||||
},
|
||||
{
|
||||
"name": "citations",
|
||||
"link": "/citations/"
|
||||
},
|
||||
{
|
||||
"name": "contact",
|
||||
"link": "/contact/"
|
||||
|
|
29
src/citations.njk
Normal file
29
src/citations.njk
Normal file
|
@ -0,0 +1,29 @@
|
|||
---
|
||||
title: maia academic citations :3
|
||||
subhead: academic citations
|
||||
permalink: /citations/index.html
|
||||
date: git Last Modified
|
||||
---
|
||||
{% extends 'layouts/default.njk' %}
|
||||
{% block main %}
|
||||
<p>a collection of various academic mentions of me and my work, if you have
|
||||
also cited my work in a paper but it isn't on this list yet feel free to <a href="/contact/">contact me</a></p>
|
||||
<div>
|
||||
<ul>
|
||||
{% for citation in citations %}
|
||||
<li class="list-entry">
|
||||
<h3><a href="{{ citation.link }}">{{ citation.title }}</a>{% if citation.pdf %} (<a href="{{ citation.pdf }}">pdf</a>){% endif %}</h3>
|
||||
<div class="byline">
|
||||
<span>published <span class="year">{{ citation.year }}</span></span>
|
||||
<span class="middot"></span>
|
||||
<span>by <span class="author by" id="author">{{ citation.authors }}</span></span>
|
||||
{% if citation.doi %}
|
||||
<span class="middot"></span>
|
||||
<span><a href="{{ citation.doi }}"><code>{{ citation.doi }}</code></a></span>
|
||||
{% endif %}
|
||||
</div>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
{% endblock %}
|
|
@ -61,7 +61,7 @@ footer,
|
|||
.list-entry {
|
||||
list-style-type: none;
|
||||
|
||||
h2 {
|
||||
h2, h3 {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
@ -126,7 +126,8 @@ table {
|
|||
|
||||
time,
|
||||
.author,
|
||||
.updated {
|
||||
.updated,
|
||||
.year {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue