Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion _includes/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,12 @@
{% else %}{{ page.title }} | {% t global.title %}{% endif %}">
<meta name="twitter:title" content="{% if page.title contains "titles." %}{% t page.title %} | {% t global.title %}
{% else %}{{ page.title }} | {% t global.title %}{% endif %}">
<link rel="stylesheet" href="{{ "/css/style.css" | relative_url }}" type="text/css">
<link rel="stylesheet" href=" {% assign myurl = "/css/style.css" %}
{% if myurl contains '://' %}
{% else %}
{{ myurl | prepend: site.baseurl }}
{% endif %}" type="text/css">

<link rel="apple-touch-icon" sizes="180x180" href="/img/meta/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/img/meta/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/img/meta/favicon-16x16.png">
Expand Down
2 changes: 1 addition & 1 deletion _posts/2026-06-05-firo-v014161-release.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: "Mandatory Release: Firo v0.14.16.1"
summary: "A mandatory update for all users, including those already on v0.14.16.0. Update before block 1,329,000"
tags: [community, dev, news]
author: "Augustus Jong"
img: "/blog/assets/firo-v0.14.16.1/banner.png"
img: "{{ site.baseurl }}/blog/assets/firo-v0.14.16.1/banner.png"
---

Firo v0.14.16.1 is a mandatory release. **All users must update to this version even if they have already updated to v0.14.16.0.** All wallets, full nodes, and masternodes must be updated prior to block 1,329,000 (approximately 22 June 2026).
Expand Down
16 changes: 8 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ <h3>{% t home.privacy %}</h3>
</div>
</div>
<div class="col col-img">
<img src="/img/privacy-img.svg" alt="Privacy illustration" loading="lazy">
<img src="{{ site.baseurl }}/img/privacy-img.svg" alt="Privacy illustration" loading="lazy">
</div>
</div>
<div class="row blockchain">
Expand All @@ -67,7 +67,7 @@ <h3>{% t home.blockchain %}</h3>
</div>
</div>
<div class="col col-img">
<img src="/img/blockchain-img.svg" alt="Blockchain illustration" loading="lazy">
<img src="{{ site.baseurl }}/img/blockchain-img.svg" alt="Blockchain illustration" loading="lazy">
</div>
</div>
<div class="row infrastructure">
Expand All @@ -76,7 +76,7 @@ <h3>{% t home.privacyin %}</h3>
<p>{% t home.privacyin1 %}</p>
</div>
<div class="col col-img">
<img src="/img/infrastructure-img.svg" alt="Privacy Infrastructure illustration" loading="lazy">
<img src="{{ site.baseurl }}/img/infrastructure-img.svg" alt="Privacy Infrastructure illustration" loading="lazy">
</div>
</div>
<div class="row rnd">
Expand All @@ -87,7 +87,7 @@ <h3>{% t home.randd %}</h3>
<p><a class="btn-tertiary" href="{{ site.baseurl }}/about/research/"><span>{% t home.cta2 %}</span><i class="icons-right-small"></i></a></p>
</div>
<div class="col col-img">
<img src="/img/rnd-img.svg" alt="Blockchain illustration" loading="lazy">
<img src="{{ site.baseurl }}/img/rnd-img.svg" alt="Blockchain illustration" loading="lazy">
</div>
</div>
</div>
Expand All @@ -103,25 +103,25 @@ <h2>{% t home.getfiro %}</h2>
</div>
<div class="row btns">
<div class="col">
<img src="/img/wallet-icon.svg" alt="Image representing a physical Firo wallet" loading="lazy">
<img src="{{ site.baseurl }}/img/wallet-icon.svg" alt="Image representing a physical Firo wallet" loading="lazy">
<h3>{% t home.getfiro2 %}</h3>
<p>{% t home.getfiro2text %}</p>
<p><a href="{{ site.baseurl }}/get-firo/download/"><span>{% t home.getfiro2link %}</span><i class="icons-right-small"></i></a></p>
</div>
<div class="col">
<img src="/img/exchange-icon.svg" alt="Image representing Firo and Dollars being exchanges" loading="lazy">
<img src="{{ site.baseurl }}/img/exchange-icon.svg" alt="Image representing Firo and Dollars being exchanges" loading="lazy">
<h3>{% t home.getfiro3 %}</h3>
<p>{% t home.getfiro3text %}</p>
<p><a href="{{ site.baseurl }}/get-firo/buy-firo/"><span>{% t home.getfiro3link %}</span><i class="icons-right-small"></i></a></p>
</div>
<div class="col">
<img src="/img/masternode-icon.svg" alt="Image representing a stylized Firo masternode" loading="lazy">
<img src="{{ site.baseurl }}/img/masternode-icon.svg" alt="Image representing a stylized Firo masternode" loading="lazy">
<h3>{% t home.getfiro4 %}</h3>
<p>{% t home.getfiro4text %}</p>
<p><a href="{{ site.baseurl }}/guide/masternode-setup.html"><span>{% t home.getfiro4link %}</span><i class="icons-right-small"></i></a></p>
</div>
<div class="col">
<img src="/img/mining-icon.svg" alt="Image showing a mining cart transporting a Firo coin" loading="lazy">
<img src="{{ site.baseurl }}/img/mining-icon.svg" alt="Image showing a mining cart transporting a Firo coin" loading="lazy">
<h3>{% t home.getfiro5 %}</h3>
<p>{% t home.getfiro5text %}</p>
<p><a href="{{ site.baseurl }}/guide/how-to-mine-firo.html"><span>{% t home.getfiro5link %}</span><i class="icons-right-small"></i></a></p>
Expand Down
Loading