Skip to content

Commit

Permalink
Merge pull request #29 from positiondev/POSITION-1038-update-site
Browse files Browse the repository at this point in the history
Position 1038 update site
  • Loading branch information
Lilaro authored Oct 9, 2024
2 parents ba8b898 + 646e5be commit 5cbb486
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 101 deletions.
2 changes: 1 addition & 1 deletion _includes/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</ul>
</nav>

<p> &copy; 2023 Position Development, LLC.</p>
<p> &copy; 2024 Position Development, LLC.</p>

<p><a href="mailto:[email protected]">[email protected]</a></p>

Expand Down
1 change: 0 additions & 1 deletion _includes/nav.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@
<li><a href="/team.html">team</a></li>
<li><a href="/schedule.html">schedule a meeting</a></li>
<li><a href="/contact.html">contact us</a></li>
<li><a href="/wayland">Wayland</a></li>
</ul>
10 changes: 6 additions & 4 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,13 @@

<main>
<section>
<h2>
{{ page.title }}
</h2>
{% if page.title != "contact us" %}
<h2>
{{ page.title }}
</h2>
{% endif %}
<div>
{{ content }}
{{ content }}
</div>
</section>
</main>
Expand Down
18 changes: 3 additions & 15 deletions _layouts/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,24 +28,12 @@ <h2>mission</h2>
</section>

<section class="clients" id="clients">
<h2>Current clients</h2>
<h2>we've worked with:</h2>

<ul>
{% for client in site.data.clients %}
<li>
<div class="img-wrapper">
<img title="{{ client.name }} logo" src="/img/{{ client.image }}" />
</div>
<h3><a href="{{ client.url }}" target="_blank" rel="noopener">{{ client.name }}</a></h3>
</li>
{% endfor %}
</ul>
</section>
<section class="clients" id="past_clients">
<h2>Past clients</h2>
{% assign all_clients = site.data.clients | concat: site.data.past_clients %}

<ul>
{% for client in site.data.past_clients %}
{% for client in all_clients %}
<li>
<div class="img-wrapper">
<img title="{{ client.name }} logo" src="/img/{{ client.image }}" />
Expand Down
77 changes: 2 additions & 75 deletions contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,78 +3,5 @@
layout: default
---
<div>
<p>Fill out the form below or email us at
<a href="mailto:[email protected]">[email protected]</a>.</p>

<form id="contact-form"
method="POST">
<fieldset class="basic-data">
<legend>basic data</legend>
<label>
name
<input id="name" name="name">
</label>

<label>
email
<input id="email" name="email">
</label>
</fieldset>

<fieldset class="interested">
<legend>interested in:</legend>

<label><input type="checkbox" name="interested-in" value="webdev" />
web app development
</label>
<label><input type="checkbox" name="interested-in" value="legacy" />
legacy software maintenance
</label>
<label><input type="checkbox" name="interested-in" value="strategy" />
digital strategy
</label>
<label><input type="checkbox" name="interested-in" value="jobs" />
jobs
</label>
<label><input type="checkbox" name="interested-in" value="collaboration" />
collaboration
</label>
<label><input type="checkbox" name="interested-in" value="other">
something else
</label>
</fieldset>

<label class="tell-more">tell us more: <br />
<textarea name="tell-us-more" rows="4"></textarea>
</label>

<fieldset class="heard-about">
<legend>heard about position through:</legend>
<label><input type="checkbox" name="heard-about-via" value="referral" />
a referral
</label>
<label><input type="checkbox" name="heard-about-via" value="event"/>
an event
</label>
<label><input type="checkbox" name="heard-about-via" value="search" />
search
</label>
<label><input type="checkbox" name="heard-about-via" value="social"/>
social media
</label>
<label><input type="checkbox" name="heard-about-via" value="other" />
something else
</label>
</fieldset>

<div class="button-wrapper">
<input type="submit" id="submit-button" value="send" />
</div>
</form>

<div id="thank-you">
<h3 id="thank-you-name">thank you</h3>

<p>We'll get back to you shortly.</p>
</div>
</div>
<iframe id="iframe" src="https://docs.google.com/forms/d/e/1FAIpQLScAciegrB3AisEPi1sZqbF6vIYWF3J8amAldw7hW0M8uZx9-g/viewform?embedded=true" width="100%" height="1530" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>
</div>
5 changes: 0 additions & 5 deletions wayland.html

This file was deleted.

0 comments on commit 5cbb486

Please sign in to comment.