Convert fixed refs to ref calls

This commit is contained in:
2023-11-09 23:58:57 +00:00
parent d0baae54ce
commit 2ca30595f7
4 changed files with 5 additions and 5 deletions

View File

@@ -4,11 +4,11 @@
<div class="columns _is-desktop"> <div class="columns _is-desktop">
<div class="column is-mobile is-multiline is-fullwidth-touch"> <div class="column is-mobile is-multiline is-fullwidth-touch">
<a class="button is-primary is-medium is-fullwidth has-box-shadow" href="/about">Learn more</a> <a class="button is-primary is-medium is-fullwidth has-box-shadow" href="{{ ref . "about" }}">Learn more</a>
</div> </div>
<div class="column is-mobile is-multiline is-fullwidth-touch"> <div class="column is-mobile is-multiline is-fullwidth-touch">
<a class="button is-primary is-medium is-fullwidth has-box-shadow is-inverted _is-outlined" <a class="button is-primary is-medium is-fullwidth has-box-shadow is-inverted _is-outlined"
href="/membership">Become a member</a> href="{{ ref . "membership" }}">Become a member</a>
</div> </div>
</div> </div>

View File

@@ -9,7 +9,7 @@
<div class="column"> <div class="column">
<h2 class="title has-text-white">Become a member today!</h2> <h2 class="title has-text-white">Become a member today!</h2>
<p class="subtitle has-text-white">Leigh Hackspace is open to all. Being a member gives you access to our space, tools, and community.</p> <p class="subtitle has-text-white">Leigh Hackspace is open to all. Being a member gives you access to our space, tools, and community.</p>
<a href="/membership" class="button is-primary is-medium has-box-shadow is-fullwidth">Join Leigh Hackspace</a> <a href="{{ ref . "membership" }}" class="button is-primary is-medium has-box-shadow is-fullwidth">Join Leigh Hackspace</a>
</div> </div>
</div> </div>
</div> </div>

View File

@@ -5,7 +5,7 @@
Leigh Hackspace is open to all.<br>Being a member gives you access to our space, tools, and community. Leigh Hackspace is open to all.<br>Being a member gives you access to our space, tools, and community.
</div> </div>
<div class="column is-4-tablet _is-2-desktop is-3-widescreen"> <div class="column is-4-tablet _is-2-desktop is-3-widescreen">
<a href="/memberships" class="button is-primary is-fullwidth is-medium has-box-shadow">Join Leigh Hackspace</a> <a href="{{ ref . "membership" }}" class="button is-primary is-fullwidth is-medium has-box-shadow">Join Leigh Hackspace</a>
</div> </div>
</div> </div>
</div> </div>

View File

@@ -23,7 +23,7 @@
<div class="navbar-item has-shadow"> <div class="navbar-item has-shadow">
<div class="buttons is-block-touch is-fullwidth-touch"> <div class="buttons is-block-touch is-fullwidth-touch">
<a href="/membership" class="button is-primary is-rounded is-size-5"> <a href="{{ ref . "membership" }}" class="button is-primary is-rounded is-size-5">
<strong>Become a member</strong> <strong>Become a member</strong>
</a> </a>
</div> </div>