Skip to content

Commit 8b9de16

Browse files
Doncey AlbinDoncey Albin
authored andcommitted
Added ability to add links to news updates
1 parent 1cda10c commit 8b9de16

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

_includes/article_v2.html

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
<!-- Line -->
5858
<hr class="separating-line"{% if page.category != "research" and page.category != "design" %} style="margin-bottom: 40px;"{% endif %}>
5959

60-
<!-- News Update -->
60+
<!-- News Update
6161
{% if page.show_news_updates %}
6262
<div style="text-align:left; font-size: 40px;">
6363
<strong style="color:black;">News:</strong>
@@ -70,8 +70,22 @@
7070
{% endif %}
7171
{% endfor %}
7272
</ul>
73+
{% endif %} -->
74+
<!-- News Update -->
75+
{% if page.show_news_updates %}
76+
<div style="text-align:left; font-size: 40px;">
77+
<strong style="color:black;">News:</strong>
78+
</div>
79+
<ul style="font-size: 20px; list-style-type: disc;">
80+
{% for i in (1..50) %}
81+
{% assign news_update_index = 'news_update_' | append: i %}
82+
{% if page[news_update_index] %}
83+
<li>{{ page[news_update_index] | markdownify }}</li>
84+
{% endif %}
85+
{% endfor %}
86+
</ul>
7387
{% endif %}
74-
88+
7589
<!-- Vertical Space -->
7690
<br>
7791

scenesense.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ arxiv_link_text: "ArXiv"
3939
# bibtex_link_text: "BiTex"
4040

4141
show_news_updates: True
42-
news_update_2: "2024-9-18 Real World SceneSense Application and model updates on ARXIV: https://arxiv.org/abs/2409.10681"
42+
news_update_2: "2024-9-18 Real World SceneSense Application and model updates on ARXIV: [https://arxiv.org/abs/2409.10681](https://arxiv.org/abs/2409.10681)"
4343
news_update_1: "2024-06-30 SceneSense accepted to IROS 2024!"
4444
---
4545

0 commit comments

Comments
 (0)