more stripe

This commit is contained in:
Norm Rasmussen
2022-05-04 16:38:48 -04:00
parent 91caa83232
commit 1d8d9acf92
2 changed files with 29 additions and 16 deletions

View File

@ -9,21 +9,24 @@
{% case role %}
{% when 'developer', 'architect' %}
<div class="np-homepage-subheadline np-header-font-color">
Hi {{ current_person.first_name }}, how is the weather in {{ current_person.properties.location }}?
Here is the training you are eligible for in your role as {{ current_person.properties.role }}.
<span>Hi {{ current_person.first_name }}, how is the weather in {{ current_person.properties.location }}?</span>
<br>
<span>Here is the training you are eligible for in your role as {{ current_person.properties.role }}.</span>
</div>
{% else %}
<div class="np-homepage-subheadline np-header-font-color">
Hi {{ current_person.first_name }}, how is the weather in {{ current_person.properties.location }}?
Here is the training you are eligible for in your role as
<span>Hi {{ current_person.first_name }}, how is the weather in {{ current_person.properties.location }}?</span>
<br>
<span>Here is the training you are eligible for in your role as
<div class="dropdown">
<button class="dropbtn">Select Role ▼ </button>
<div class="dropdown-content">
<a href="#">Developer</a>
<a href="#">Architect</a>
<a href="#">Partner</a>
<button class="dropbtn">Select Role ▼ </button>
<div class="dropdown-content">
<a href="#">Developer</a>
<a href="#">Architect</a>
<a href="#">Partner</a>
</div>
</div>
</div>
</span>
</div>
{% endcase %}
</div>