Skip to content

Commit 215a628

Browse files
committed
Started adding site version
1 parent 5ece823 commit 215a628

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

VERSION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
1500

_includes/footer.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@
2929
</ul>
3030
</div>
3131
</div>
32-
<div class="footer-col-wrapper">
33-
© 2015 - 2025 Software Testing Conferences and Workshops by <a href="https://kenst.com" target="_blank">Chris Kenst</a>
32+
<div name="copyright" class="footer-col-wrapper">
33+
© 2015 - 2025 {{ site.title }} by <a href="https://www.kenst.com/" target="_blank">Chris Kenst</a>
3434
</div>
35-
<div class="footer-col-wrapper">
36-
Are we missing anything? If so consider <a href="/how-to-contribute/">contributing</a>.
35+
<div name= "site-version" class="footer-col-wrapper">
36+
{% if site_version %}{% include site_version.html %}{% endif %}
3737
</div>
38-
<div class="footer-col-wrapper-scroll">
38+
<div name="super-footer" class="footer-col-wrapper-scroll">
3939
<p>An open source, up to date, community driven list of software testing conferences and software testing
40-
workshops happening in 2026 and beyond.
40+
workshops happening in 2025 and beyond.
4141
<p>Whether you are looking for quality conferences, qa conferences, qa conferences 2025, qa conferences 2026, quality engineering
4242
conferences, quality assurance conferences, quality assistance conferences, modern testing conferences, testing
4343
conferences, testing conferences 2025, testing conferences 2026, top software testing conferences,

_includes/site-version.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{% assign version_file = site.static_files | where: "path", "/VERSION" | first %}
2+
{% if version_file %}
3+
<p class="site-version">Site Version: {{ version_file.content }}</p>
4+
{% endif %}

0 commit comments

Comments
 (0)