Skip to content

Commit b6cf94b

Browse files
committed
New website announcement post
1 parent 9ca20ca commit b6cf94b

File tree

11 files changed

+96
-0
lines changed

11 files changed

+96
-0
lines changed

_includes/image-gallery.html

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!-- modified from https://dmnfarrell.github.io/software/jekyll-galleries -->
2+
<div class ="image-gallery">
3+
{% assign sorted = site.static_files | sort: 'date' | reverse %}
4+
{% for file in sorted %}
5+
{% if file.path contains include.folder %}
6+
{% if file.extname == '.png' %}
7+
{% assign filenameparts = file.path | split: "/" %}
8+
{% assign filename = filenameparts | last | replace: file.extname,"" %}
9+
<div class="box">
10+
<a href="{{ file.path | relative_url }}" title="{{ filename }}">
11+
<img src="{% base %}{{ file.path | relative_url }} " target="_blank" alt="{{ filename }}" class="img-gallery" />
12+
</a>
13+
</div>
14+
{% endif %}
15+
{% endif %}
16+
{% endfor %}
17+
</div>

_includes/news-img.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<!-- Jekyll template specifically for standalone images on the news page -->
2+
<img src="{% base %}/img/news/{{ include.img }}" alt="{{ include.alt }}" />

img/news/website-launch/cover.png

453 KB
Loading
57.9 KB
Loading
55.5 KB
Loading
329 KB
Loading
267 KB
Loading
341 KB
Loading
588 KB
Loading
229 KB
Loading

0 commit comments

Comments
 (0)