articles
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -6,3 +6,4 @@ assets/img/
|
|||||||
Gemfile.lock
|
Gemfile.lock
|
||||||
*.backup
|
*.backup
|
||||||
*.kate-swp
|
*.kate-swp
|
||||||
|
*.pdf
|
||||||
|
|||||||
19
articles.html
Normal file
19
articles.html
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
---
|
||||||
|
layout: default
|
||||||
|
title: Articles
|
||||||
|
---
|
||||||
|
<h1>Latest Articles</h1>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
{% for file in site.static_files %}
|
||||||
|
{% if file.path contains '/articles/' and file.extname == '.pdf' %}
|
||||||
|
<li>
|
||||||
|
<a href="{{ file.path | relative_url }}">
|
||||||
|
<span style="font-size: 1.2em;">
|
||||||
|
{{ file.name | remove: '.pdf' | replace: '_', ' ' }}
|
||||||
|
</span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
1
index.md
1
index.md
@@ -9,6 +9,7 @@ I'm Sam Hadow, a free software advocate *(with free as in freedom, libre in Span
|
|||||||
<br /><br />
|
<br /><br />
|
||||||
## Useful links
|
## Useful links
|
||||||
[blog](/blog.html) (mostly tech related)
|
[blog](/blog.html) (mostly tech related)
|
||||||
|
[articles](/articles.html) (PDF papers)
|
||||||
[FAQ](/faq.html)
|
[FAQ](/faq.html)
|
||||||
## Available services
|
## Available services
|
||||||
[nitter](https://nitter.hadow.fr) [not working](https://github.com/zedeus/nitter/issues/919), thanks Elon.
|
[nitter](https://nitter.hadow.fr) [not working](https://github.com/zedeus/nitter/issues/919), thanks Elon.
|
||||||
|
|||||||
Reference in New Issue
Block a user