Skip to content

Commit c030c5b

Browse files
committed
v1
1 parent ad7800c commit c030c5b

26 files changed

+197
-171
lines changed

_config.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Site Settings
22
lang: en
33

4-
title: US-RSE'25
5-
description: US-RSE Conference 2025
4+
title: USRSE'25
5+
description: USRSE 2025 Conference
66

77
url: "https://us-rse.org"
88
baseurl: "/usrse25"
@@ -12,7 +12,7 @@ banner: /assets/img/main_logo_transparent.png
1212
icon: /assets/img/main_logo_transparent.png
1313
domain: https://us-rse.org
1414

15-
email: contact@us-rse.org
15+
email: usrse25-conference@us-rse.org
1616
permalink: /:year-:month-:day-:title/
1717

1818
favicon: /assets/img/favicon.ico
@@ -21,7 +21,8 @@ fixed_navbar: top
2121
paginate: 5
2222
paginate_path: "/news/page:num/"
2323

24-
excerpt_length: 200
24+
excerpt_length: 1000
25+
excerpt_separator: "<!--more-->"
2526

2627
# social media
2728
twitter: us_rse

_data/callouts.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
items:
2+
- title: Volunteer
3+
subtitle: >
4+
Help make USRSE'25 a success <br>
5+
link: organization/
6+
link_name: Join the Planning Committee
7+
- title: Join the Mailing List
8+
subtitle: >
9+
Keep up to date with conference information <br>
10+
link: https://groups.google.com/a/us-rse.org/g/usrse-conference
11+
link_name: Add Your Email
12+
- title: Have Questions?
13+
subtitle: >
14+
Contact the conference organizers <br>
15+
link: mailto:[email protected]
16+
link_name: Get in Touch

_data/navigation.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
- name: News & Updates
2+
link: news/
13
- name: Participate
24
link: participate/
35
#- name: Program

_includes/callouts.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{% assign callouts=site.data.callouts.[page.callouts] %}
33

44
<section id="features" class="block block-grid outer">
5-
<div class="inner">
5+
<div class="inner">
66
<div class="block-content">
77
<div class="grid grid-col-3">
88
{% for callout in callouts.items %}
@@ -14,7 +14,7 @@ <h3 class="grid-item-title line-left">
1414
<div class="grid-item-content">
1515
<p>{% if callout.subtitle %}{{ callout.subtitle | newline_to_br }}{% endif %}
1616
{% if callout.description %}{{ callout.description | newline_to_br }}{% endif %}
17-
</p>
17+
</p>
1818
</div>
1919
<div class="grid-item-buttons">
2020
{% if callout.link %}

_includes/header.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
<div class="container">
33
<div class="navbar-brand">
44
<a href="{{ site.baseurl }}/" class="navbar-item {% if page.url == "/" %}is-active{% endif %}">
5-
{{ site.title }}
5+
<!--{{ site.title }} -->
6+
<img src="{{ site.baseurl }}/assets/img/logo_horiz_long_white.png">
67
</a>
78
<a role="button" class="navbar-burger burger" aria-label="menu" aria-expanded="false" data-target="navMenu" :class="{ 'is-active': openNav }" x-on:click="openNav = !openNav">
89
<span aria-hidden="true"></span>
@@ -33,7 +34,7 @@
3334
{% endfor %}
3435
{% endif %}
3536
</div>
36-
<a type="button" style="margin:auto 5px; -webkit-appearance: none;" class="btn btn-light btn-sm" href="https://us-rse.org">
37+
<a type="button" style="margin:auto 5px; -webkit-appearance: none;" class="btn btn-info btn-sm" href="https://us-rse.org">
3738
US-RSE Association
3839
</a>
3940

_layouts/default.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
{% if page.show_hero %}
1313
{% include hero.html %}
1414
{% endif %}
15-
{% include callouts.html %}
1615
<section class="section" style="background-color: white; border-radius:3px">
1716
<div class="container">
1817
<div class="columns">

_layouts/news.html

Lines changed: 30 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,37 @@
11
---
2-
layout: default
2+
layout: page
33
---
44

55
{{ content }}
66

7-
<div class="columns is-multiline">
8-
<div class="column is-12">
9-
{% include pagination.html %}
10-
</div>
11-
&nbsp;
12-
{% for post in paginator.posts %}
13-
<div class="column is-12">
14-
{% include post-card.html %}
15-
</div>
16-
{% endfor %}
17-
<div class="column is-12">
18-
{% include pagination.html %}
19-
</div>
20-
<div class="column is-12">
21-
{% include subscribe.html %}
7+
<div class="posts-list">
8+
{% for post in site.posts %}
9+
<article class="post-preview" style="margin-top: 4ex;">
10+
<a href="{{ post.url | prepend: site.baseurl }}">
11+
<h3 class="post-title">{{ post.title }}</h3>
12+
</a>
13+
14+
<p class="post-meta" style="margin-top: -1ex;">
15+
Posted on {{ post.date | date: "%B %-d, %Y" }}
16+
</p>
17+
18+
<div class="post-entry-container">
19+
<div class="post-entry">
20+
{% if post.tags contains 'full' %}
21+
{{ post.excerpt }}
22+
{% else %}
23+
{{ post.excerpt | xml_escape | truncatewords: site.excerpt_length }}
24+
{% assign excerpt_word_count = post.excerpt | number_of_words %}
25+
{% if post.content != post.excerpt or excerpt_word_count > site.excerpt_length %}
26+
<a href="{{ post.url | prepend: site.baseurl }}" class="post-read-more">[Read&nbsp;More]</a>
27+
{% endif %}
28+
{% endif %}
29+
<br>
30+
<hr>
31+
</div>
2232
</div>
33+
34+
</article>
35+
{% endfor %}
2336
</div>
37+

_posts/2024-09-24-tbd.md

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,8 @@
11
---
22
layout: post
3-
title: To be continued...
3+
title: We're Heading East
44
date: 2024-09-24
5-
tags:
5+
tags: full
66
---
77

8-
Our US-RSE Conference series will continue in 2025!
9-
10-
Keep an eye on this website for announcements relating to US-RSE'25.
11-
12-
Feel free to also [join our mailing list](https://groups.google.com/a/us-rse.org/g/usrse-conference)
13-
to get updates on the US-RSE conference series.
14-
8+
The USRSE Conference series will continue in 2025! Plan to join us in Philadelphia, PA in October 2025. [Join our mailing list](https://groups.google.com/a/us-rse.org/g/usrse-conference) to get updates on the USRSE Conference Series. <!--more-->

_posts/2024-10-07-volunteer.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
layout: post
3+
title: Join the Conference Planning Committee
4+
date: 2024-10-07
5+
tags: full
6+
---
7+
8+
Applications to join the [2025 conference planning committee](../about/organization/) are now open. Learn more about available roles and volunteer expectations [here](../about/organization/).
9+
<!--more-->

assets/css/bootstrap.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,15 @@
2222
--secondary: #6c757d;
2323
--success: #28a745;
2424
--info: #17a2b8;
25+
--infodk: #138496;
2526
--warning: #ffc107;
2627
--danger: #dc3545;
2728
--light: #f8f9fa;
2829
--dark: #343a40;
30+
--usrsemain: #741755;
31+
--usrselight: #bd8ba6;
32+
--usrsegrn: #17746e;
33+
--usrseblue: #175574;
2934
--breakpoint-xs: 0;
3035
--breakpoint-sm: 576px;
3136
--breakpoint-md: 768px;

0 commit comments

Comments
 (0)