Skip to content

Commit e176979

Browse files
committed
adds resources page and navbar item
1 parent 5168cda commit e176979

5 files changed

Lines changed: 70 additions & 7 deletions

File tree

_config.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -120,13 +120,13 @@ disqus_shortname: al-folio # put your disqus shortname
120120
# External sources.
121121
# If you have blog posts published on medium.com or other external sources,
122122
# you can display them in your blog by adding a link to the RSS feed.
123-
external_sources:
124-
- name: medium.com
125-
rss_url: https://medium.com/@al-folio/feed
126-
- name: Google Blog
127-
posts:
128-
- url: https://blog.google/technology/ai/google-gemini-update-flash-ai-assistant-io-2024/
129-
published_date: 2024-05-14
123+
#external_sources:
124+
# - name: medium.com
125+
# rss_url: https://medium.com/@al-folio/feed
126+
# - name: Google Blog
127+
# posts:
128+
# - url: https://blog.google/technology/ai/google-gemini-update-flash-ai-assistant-io-2024/
129+
# published_date: 2024-05-14
130130

131131
# -----------------------------------------------------------------------------
132132
# Newsletter
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<div class="news">
2+
{% if site.resources != blank %}
3+
{% assign resources_size = site.resources | size %}
4+
<div
5+
class="table-responsive"
6+
{% if include.limit and page.announcements.scrollable and resources_size > 3 %}
7+
style="max-height: 60vw"
8+
{% endif %}
9+
>
10+
<table class="table table-sm table-borderless">
11+
{% assign resources = site.resources | reverse %}
12+
{% if include.limit and page.announcements.limit %}
13+
{% assign resources_limit = page.announcements.limit %}
14+
{% else %}
15+
{% assign resources_limit = resources_size %}
16+
{% endif %}
17+
{% for item in resources limit: resources_limit %}
18+
<tr>
19+
<th scope="row" style="width: 20%">{{ item.date | date: '%b %d, %Y' }}</th>
20+
<td>
21+
{% if item.inline %}
22+
{{ item.content | remove: '<p>' | remove: '</p>' | emojify }}
23+
{% else %}
24+
<a class="news-title" href="{{ item.url | relative_url }}">{{ item.title }}</a>
25+
{% endif %}
26+
</td>
27+
</tr>
28+
{% endfor %}
29+
</table>
30+
</div>
31+
{% else %}
32+
<p>No resources listed so far...</p>
33+
{% endif %}
34+
</div>

_pages/news.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ layout: page
33
title: news
44
permalink: /news/
55
nav: true
6+
nav_order: 2
67
---
78

89
{% include news.liquid %}

_pages/resources.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
layout: page
3+
title: resources
4+
permalink: /resources/
5+
nav: true
6+
nav_order: 1
7+
---
8+
9+
- [GAMA (Galician Metrical Analyzer)](https://prf2.org/en/gama/): Automatic metrical analysis of poetry in Galician.
10+
11+
{% #include resources/resources.liquid %}
12+
13+
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
layout: post
3+
title: Poster at II CLARIAH-GAL Workshop
4+
date: 2025-05-09 16:30:00+0200
5+
inline: false
6+
related_posts: false
7+
pubs_for_page: true
8+
page_id: resources-gama
9+
---
10+
11+
[CLARIAH-GAL](https://www.clariah.gal/) YYYYYYYYYYYYYYYYYYYYYYYY is the Galician node of CLARIAH-ES, which coordinates Spain's participation in European Resarch Infrastruture Consortia [CLARIN](https://www.clarin.eu/) and [DARIAH](https://www.dariah.eu/). CLARIAH-GAL is managed by [Instituto da Lingua Galega](https://ilg.usc.gal/), in collaboration with CiTIUS, which is the host for the COMPEL project.
12+
13+
CLARIAH-GAL organized its second workshop on May 9, 2025, featuring presentations on a variety of digital humanities topics, including textual, visual and sound corpora and related tools and resources. The workshop program is at [https://ilg.usc.gal/gl/actividades/II-xeira-clariah-gal](https://ilg.usc.gal/gl/actividades/II-xeira-clariah-gal).
14+
15+
A poster introducing the COMPEL project was presented:

0 commit comments

Comments
 (0)