diff --git a/opentech/templates/base.html b/opentech/templates/base.html index d395b34562a9d1e77808db43da9618e706005ff2..fa045c38f4911ba604aca5492adafaea8fed078d 100644 --- a/opentech/templates/base.html +++ b/opentech/templates/base.html @@ -75,7 +75,10 @@ <header class="header header--standard {% block header_modifier %}{% endblock %}"> {% endif %} - <a href="#" class="link link--fixed-apply">Apply</a> + {% block apply_button %} + {% include "includes/apply_button.html" %} + {% endblock %} + <div class="header__inner wrapper wrapper--large"> <a href="{% slugurl 'home' %}" aria-label="Home link"> <svg class="header__logo header__logo--desktop header__logo--desktop-light"><use xlink:href="#logo-desktop"></use></svg> diff --git a/opentech/templates/includes/apply_button.html b/opentech/templates/includes/apply_button.html new file mode 100644 index 0000000000000000000000000000000000000000..477d0ed9074b8da8a2115754fa573c5c193c4ade --- /dev/null +++ b/opentech/templates/includes/apply_button.html @@ -0,0 +1 @@ +<a href="#" class="link link--fixed-apply">Apply</a>