Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat: implement "Ready to work together?" section of /our-work page #221

Merged
merged 1 commit into from
Jul 1, 2024
Merged
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
10 changes: 10 additions & 0 deletions src/_includes/ready-to-work.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<div class="container my-5 py-5">
<div class="offset-lg-2 col-lg-8 text-center">
{% assign h3-text = "Ready to work together?" %} {% if include.h3-class %}
<h3 class="{{include.h3-class}}">{{h3-text}}</h3>
{% else %}
<h3>{{h3-text}}</h3>
{% endif %}
<a class="btn btn-primary text-center d-inline-block mt-2" target="_blank" href="mailto:[email protected]">Contact us</a>
</div>
</div>
7 changes: 1 addition & 6 deletions src/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -142,11 +142,6 @@ <h3 class="h4 pt-3 mb-1 d-inline-block text-white">{{ member.name }}</h3>

<section class="bg-w-100 bg-white">
<div class="row">
<div class="container my-5 py-5">
<div class="offset-lg-2 col-lg-8 text-center">
<h3 class="text-dark">Ready to work together?</h3>
<a class="btn btn-primary text-center d-inline-block mt-2" target="_blank" href="mailto:[email protected]">Contact us</a>
</div>
</div>
{% include ready-to-work.html h3-class="text-dark" %}
</div>
</section>
4 changes: 1 addition & 3 deletions src/our-work.html
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,4 @@ <h3 class="fs-6 fw-normal sans-serif text-dark d-block mt-3">
<hr class="border border-100 border-dark border-half opacity-100 mb-1" />
</section>

<section class="row">
<!-- Ready to work together? -->
</section>
<section class="row">{% include ready-to-work.html %}</section>