Skip to content

Commit 8bccd70

Browse files
committed
blog
1 parent 59f91fa commit 8bccd70

File tree

6 files changed

+118
-21
lines changed

6 files changed

+118
-21
lines changed

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ gem "minima", "~> 2.5"
1616
# If you have any plugins, put them here!
1717
group :jekyll_plugins do
1818
gem "jekyll-feed", "~> 0.12"
19+
gem "jekyll-paginate", "~> 1.1"
1920
end
2021

2122
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem

_config.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@ description: >
1313
theme: minima
1414

1515
plugins:
16-
# - jekyll-feed
16+
- jekyll-feed
1717
- jekyll-seo-tag
18+
- jekyll-paginate
1819

1920
# Theme-specific settings
2021

@@ -51,6 +52,7 @@ header_pages:
5152
- publications.html
5253
- theses.md
5354
- news.md
55+
- blog.html
5456

5557
collections:
5658
events:
@@ -67,4 +69,8 @@ collections:
6769
show_excerpts: true
6870

6971
# display posts with dates in the future
70-
future: true
72+
future: true
73+
74+
# Pagination settings
75+
paginate: 5
76+
paginate_path: "/blog/page:num/"

_layouts/home.html

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ <h3>
3131
{{ post.title | escape }}
3232
</a>
3333
</h3>
34-
{%- if site.show_excerpts -%}
34+
{%- if site.minima.show_excerpts -%}
3535
{{ post.excerpt }}
3636
{%- endif -%}
3737
</li>
@@ -42,20 +42,26 @@ <h3>
4242
<div class="pager">
4343
<ul class="pagination">
4444
{%- if paginator.previous_page %}
45-
<li><a href="{{ paginator.previous_page_path | relative_url }}" class="previous-page">{{ paginator.previous_page }}</a></li>
45+
<li>
46+
<a href="{{ paginator.previous_page_path | relative_url }}" class="previous-page" title="Go to Page {{ paginator.previous_page }}">
47+
{{ paginator.previous_page }}
48+
</a>
49+
</li>
4650
{%- else %}
4751
<li><div class="pager-edge"></div></li>
4852
{%- endif %}
4953
<li><div class="current-page">{{ paginator.page }}</div></li>
5054
{%- if paginator.next_page %}
51-
<li><a href="{{ paginator.next_page_path | relative_url }}" class="next-page">{{ paginator.next_page }}</a></li>
55+
<li>
56+
<a href="{{ paginator.next_page_path | relative_url }}" class="next-page" title="Go to Page {{ paginator.next_page }}">
57+
{{ paginator.next_page }}
58+
</a>
59+
</li>
5260
{%- else %}
5361
<li><div class="pager-edge"></div></li>
5462
{%- endif %}
5563
</ul>
5664
</div>
5765
{%- endif %}
58-
5966
{%- endif -%}
60-
61-
</div>
67+
</div>

_layouts/post.html

Lines changed: 25 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,34 +5,46 @@
55

66
<header class="post-header">
77
<h1 class="post-title p-name" itemprop="name headline">{{ page.title | escape }}</h1>
8-
<p class="post-meta">
8+
<div class="post-meta">
99
{%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
10-
<time class="dt-published" datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
11-
{{ page.date | date: date_format }}
10+
{% assign pdate = page.date | date_to_xmlschema %}
11+
{%- if page.modified_date %}<span class="meta-label">Published:</span>{% endif %}
12+
<time class="dt-published" datetime="{{ pdate }}" itemprop="datePublished">
13+
{{ pdate | date: date_format }}
1214
</time>
1315
{%- if page.modified_date -%}
14-
~
15-
{%- assign mdate = page.modified_date | date_to_xmlschema -%}
16+
<span class="bullet-divider"></span>
17+
<span class="meta-label">Updated:</span>
18+
{%- assign mdate = page.modified_date | date_to_xmlschema %}
1619
<time class="dt-modified" datetime="{{ mdate }}" itemprop="dateModified">
1720
{{ mdate | date: date_format }}
1821
</time>
1922
{%- endif -%}
20-
{%- if page.author -%}
21-
• {% for author in page.author %}
23+
{%- if page.author %}
24+
<div class="{% unless page.modified_date %}force-inline {% endunless %}post-authors">
25+
{%- for author in page.author %}
2226
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
2327
<span class="p-author h-card" itemprop="name">{{ author }}</span></span>
24-
{%- if forloop.last == false %}, {% endif -%}
28+
{%- if forloop.last == false %}, {% endif -%}
2529
{% endfor %}
26-
{%- endif -%}</p>
30+
</div>
31+
{%- endif %}
32+
</div>
2733
</header>
2834

2935
<div class="post-content e-content" itemprop="articleBody">
3036
{{ content }}
3137
</div>
3238

33-
{%- if site.disqus.shortname -%}
34-
{%- include disqus_comments.html -%}
35-
{%- endif -%}
39+
{% if jekyll.environment == 'production' -%}
40+
{% if page.comments == false -%}
41+
<div class="comments-disabled-message">
42+
Comments have been disabled for this post.
43+
</div>
44+
{% else -%}
45+
{%- include comments.html -%}
46+
{% endif -%}
47+
{% endif -%}
3648

3749
<a class="u-url" href="{{ page.url | relative_url }}" hidden></a>
38-
</article>
50+
</article>
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
---
2+
layout: post
3+
title: "Welcome to Our Research Blog"
4+
date: 2025-10-03 10:00:00 +0100
5+
author: NGMLGroup
6+
excerpt: "Welcome to the Northernmost Graph Machine Learning Group's research blog! Here we share insights, breakthroughs, and stories behind our cutting-edge research in graph neural networks and machine learning."
7+
---
8+
9+
Welcome to the **Northernmost Graph Machine Learning Group's** research blog!
10+
11+
We're excited to share our journey of discovery in the fascinating world of graph neural networks, machine learning, and their applications to real-world problems. Based at the [UiT the Arctic University of Norway](https://en.uit.no/) in Tromsø, we're proud to be the northernmost research group working on these cutting-edge technologies.
12+
13+
## What You'll Find Here
14+
15+
In this blog, we'll be sharing:
16+
17+
- **Research insights** from our latest publications
18+
- **Behind-the-scenes stories** of how our breakthroughs came to be
19+
- **Practical applications** of graph neural networks
20+
- **Educational content** to make complex concepts accessible
21+
- **Updates** on our group activities and collaborations
22+
23+
## Our Research Focus
24+
25+
Our work spans several exciting areas:
26+
27+
🧠 **Graph Neural Networks**: Developing new architectures and understanding their theoretical foundations
28+
29+
📊 **Time Series Analysis**: Using graphs to model complex temporal dependencies
30+
31+
🔬 **Interpretability**: Making AI systems more transparent and trustworthy
32+
33+
**Scalability**: Breaking barriers to handle massive real-world datasets
34+
35+
🎯 **Applications**: From climate modeling to drug discovery, from social networks to financial markets
36+
37+
## Why We're Writing This Blog
38+
39+
Research papers are essential for advancing science, but they often miss the human story behind the discoveries. We want to share:
40+
41+
- The **intuitions** that led to our breakthroughs
42+
- The **challenges** we faced along the way
43+
- The **real-world impact** of our work
44+
- The **mathematical beauty** behind the algorithms
45+
46+
## Join Our Journey
47+
48+
Whether you're a researcher, student, practitioner, or simply curious about the future of AI, we invite you to follow along as we explore the frontiers of graph machine learning.
49+
50+
The future is connected, and we're excited to discover what it holds together.
51+
52+
---
53+
54+
*Stay tuned for our upcoming posts, where we'll dive deep into our latest research and share the stories behind the science.*
55+
56+
**The NGMLGroup Team**
57+
*Northernmost Graph Machine Learning Group*
58+
*UiT the Arctic University of Norway*

blog.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
layout: home
3+
title: "Blog"
4+
list_title: "Latest Posts"
5+
---
6+
7+
{% for post in site.posts limit:10 %}
8+
<div class="post-preview">
9+
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
10+
<p class="post-meta">{{ post.date | date: "%B %-d, %Y" }} by {{ post.author }}</p>
11+
<p>{{ post.excerpt }}</p>
12+
<a href="{{ post.url }}" class="read-more">Read more →</a>
13+
</div>
14+
{% endfor %}

0 commit comments

Comments
 (0)