Skip to content

Commit 295aec2

Browse files
author
Pablo Ruiz Fabo
committed
first updates
1 parent c672265 commit 295aec2

7 files changed

Lines changed: 66 additions & 32 deletions

File tree

_config.yml

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,20 @@
22
# Site settings
33
# -----------------------------------------------------------------------------
44

5-
title: blank # the website title (if blank, full name will be used instead)
6-
first_name: You
7-
middle_name: R.
8-
last_name: Name
5+
title: Computational Analysis of Peripheral Literatures # the website title (if blank, full name will be used instead)
6+
first_name:
7+
middle_name:
8+
last_name:
99
contact_note: >
10-
You can even add a little note about which of these is the best way to reach you.
10+
COMPEL Project · Computational Analysis of Peripheral Literatures.
1111
description: > # the ">" symbol means to ignore newlines until "footer_text:"
12-
A simple, whitespace theme for academics. Based on [*folio](https://github.com/bogoli/-folio) design.
12+
1313
footer_text: >
1414
Powered by <a href="https://jekyllrb.com/" target="_blank">Jekyll</a> with <a href="https://github.com/alshedivat/al-folio">al-folio</a> theme.
15-
Hosted by <a href="https://pages.github.com/" target="_blank">GitHub Pages</a>.
16-
Photos from <a href="https://unsplash.com" target="_blank">Unsplash</a>.
1715
keywords: jekyll, jekyll-theme, academic-website, portfolio-website # add your own keywords or leave empty
1816
lang: en # the language of your site (for example: en, fr, cn, ru, etc.)
1917
icon: ⚛️ # the emoji used as the favicon (alternatively, provide image name in /assets/img/)
18+
project_title: COMPEL
2019

2120
url: https://compellit.github.io # the base hostname & protocol for your site
2221
baseurl:
@@ -191,6 +190,16 @@ exclude:
191190
- README.md
192191
- readme_preview/
193192
- vendor
193+
- _pages/blog.md
194+
- _pages/books.md
195+
- _pages/cv.md
196+
- _pages/dropdown.md
197+
- _pages/profiles.md
198+
- _pages/projects.md
199+
- _pages/publications.md
200+
- _pages/repositories.md
201+
- _pages/teaching.md
202+
- _posts
194203
keep_files:
195204
- CNAME
196205
- .nojekyll

_includes/footer.liquid

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
{% capture footer_contents %}
22
&copy; Copyright {{ site.time | date: '%Y' }}
3-
{{ site.first_name }}
4-
{{ site.middle_name }}
5-
{{ site.last_name }}. {{ site.footer_text }}
3+
{{ site.project_title }}. {{ site.footer_text }}
64
{% if site.impressum_path %}
75
<a href="{{ site.url }}{{ site.baseurl }}{{ site.impressum_path }}">Impressum</a>.
86
{% endif %}
@@ -13,9 +11,22 @@
1311

1412
{% if site.footer_fixed %}
1513
<footer class="fixed-bottom" role="contentinfo">
16-
<div class="container mt-0">
17-
{{ footer_contents }}
18-
</div>
14+
<div class="container d-flex justify-content-between align-items-center flex-wrap">
15+
<div class="inherit-text">
16+
&copy; Copyright {{ site.time | date: '%Y' }}
17+
{{ site.project_title }}. {{ site.footer_text }}
18+
{% if site.impressum_path %}
19+
<a href="{{ site.url }}{{ site.baseurl }}{{ site.impressum_path }}">Impressum</a>.
20+
{% endif %}
21+
{% if site.last_updated %}
22+
Last updated: {{ 'now' | date: '%B %d, %Y' }}.
23+
{% endif %}
24+
</div>
25+
<div class="d-flex align-items-center inherit-text">
26+
<div class="inherit-text">Grant ID: <a href="https://cordis.europa.eu/project/id/101149659">101149659 MSCA-PF</a></div>
27+
<img src="{{ '/assets/img/EN_Fundedbythe_EU_RGB_NEG_1_ec46d91d38.png' | relative_url }}" alt="EU Funded" style="height: 40px;margin-left:2rem;">
28+
</div>
29+
</div>
1930
</footer>
2031
{% else %}
2132
<footer class="sticky-bottom mt-5" role="contentinfo">
@@ -25,6 +36,7 @@
2536

2637
<div class="container">
2738
{{ footer_contents }}
39+
<img src"{{ '/assets/img/EN_Fundedbythe_EU_RGB_NEG_1_ec46d91d38.png' | relative_url }}" style="height: 60px;"/>
2840
</div>
2941
</footer>
3042
{% endif %}

_includes/header.liquid

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<header>
22
<!-- Nav Bar -->
33
<nav id="navbar" class="navbar navbar-light navbar-expand-sm {% if site.navbar_fixed %}fixed-top{% else %}sticky-top{% endif %}" role="navigation">
4-
<div class="container">
5-
{% if page.permalink != '/' %}
4+
<div class="container">
5+
{% if page.permalink != '/no-branding' <!-- keeping this just to not fiddle with the template, which tested for / originally --> %}
66
<a class="navbar-brand title font-weight-lighter" href="{{ site.baseurl }}/">
77
{% if site.title == 'blank' %}
88
{% if site.first_name %}
@@ -17,7 +17,9 @@
1717
{{- site.last_name -}}
1818
{% endif %}
1919
{% else %}
20-
{{- site.title -}}
20+
<span class="font-weight-bold">
21+
{{- site.project_title -}}
22+
</span>
2123
{% endif %}
2224
</a>
2325
{% elsif site.enable_navbar_social %}

_layouts/about.liquid

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ layout: default
1515
</header>
1616

1717
<article>
18+
1819
{% if page.profile %}
1920
<div class="profile float-{% if page.profile.align == 'left' %}left{% else %}right{% endif %}">
2021
{% if page.profile.image %}
@@ -75,6 +76,6 @@ layout: default
7576

7677
{% if site.newsletter and site.newsletter.enabled and site.footer_fixed %}
7778
{% include newsletter.liquid center=true %}
78-
{% endif %}
79+
{% endif %}
7980
</article>
8081
</div>

_pages/about.md

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,31 @@
11
---
22
layout: about
3-
title: about
3+
title: home
44
permalink: /
5-
subtitle: <a href='#'>Affiliations</a>. Address. Contacts. Motto. Etc.
5+
subtitle:
66

77
profile:
88
align: right
9-
image: prof_pic.jpg
9+
image:
1010
image_circular: false # crops the image to make it circular
11-
more_info: >
12-
<p>555 your office number</p>
13-
<p>123 your address street</p>
14-
<p>Your City, State 12345</p>
11+
more_info:
1512

16-
selected_papers: true # includes a list of papers marked as "selected={true}"
17-
social: true # includes social icons at the bottom of the page
13+
selected_papers: false # includes a list of papers marked as "selected={true}"
14+
social: false # includes social icons at the bottom of the page
1815

1916
announcements:
20-
enabled: true # includes a list of news items
17+
enabled: false # includes a list of news items
2118
scrollable: true # adds a vertical scroll bar if there are more than 3 news items
2219
limit: 5 # leave blank to include all the news in the `_news` folder
2320

2421
latest_posts:
25-
enabled: true
22+
enabled: false
2623
scrollable: true # adds a vertical scroll bar if there are more than 3 new posts items
2724
limit: 3 # leave blank to include all the blog posts
2825
---
2926

30-
Write your biography here. Tell the world about yourself. Link to your favorite [subreddit](http://reddit.com). You can put a picture in, too. The code is already in, just name your picture `prof_pic.jpg` and put it in the `img/` folder.
27+
The analysis of literary data across various languages is essential for understanding literary practices throughout history and diverse traditions. However, many languages lack adequate computational resources for literary analysis. With the support of the Marie Skłodowska-Curie Actions programme, the COMPEL project will address and study Galician literature – the European Charter for Regional or Minority Languages recognises the Galician language – to enhance computational literary analysis resources in lesser-studied traditions. By examining which features become standard in peripheral traditions compared to major ones, the project aims to promote inclusive literary history while contributing to European linguistic diversity goals. It advocates for European identity by facilitating smarter access to cultural heritage, aligning with current EU priorities.
28+
29+
The project started on April 1, 2025. It is hosted at
3130

32-
Put your address / P.O. box / other info right below your picture. You can also disable any of these elements by editing `profile` property of the YAML header of your `_pages/about.md`. Edit `_bibliography/papers.bib` and Jekyll will render your [publications page](/al-folio/publications/) automatically.
3331

34-
Link to your social media connections, too. This theme is set up to use [Font Awesome icons](https://fontawesome.com/) and [Academicons](https://jpswalsh.github.io/academicons/), like the ones below. Add your Facebook, Twitter, LinkedIn, Google Scholar, or just disable all of them.

assets/css/main.scss

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,16 @@ $max-content-width: {{ site.max_width }};
2323
"tabler-icons/tabler-icons-filled.scss",
2424
"tabler-icons/tabler-icons-outline.scss"
2525
;
26+
27+
.inherit-text {
28+
color: inherit;
29+
}
30+
31+
.footer .grant-group {
32+
gap: 3rem;
33+
}
34+
35+
footer.fixed-bottom {
36+
padding-top: 0;
37+
padding-bottom: 0;
38+
}
31.4 KB
Loading

0 commit comments

Comments
 (0)