Skip to content

Commit 5cbb486

Browse files
authored
Merge pull request #29 from positiondev/POSITION-1038-update-site
Position 1038 update site
2 parents ba8b898 + 646e5be commit 5cbb486

File tree

6 files changed

+12
-101
lines changed

6 files changed

+12
-101
lines changed

_includes/footer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</ul>
1010
</nav>
1111

12-
<p> &copy; 2023 Position Development, LLC.</p>
12+
<p> &copy; 2024 Position Development, LLC.</p>
1313

1414
<p><a href="mailto:workers@positiondev.com">workers@positiondev.com</a></p>
1515

_includes/nav.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,4 @@
44
<li><a href="/team.html">team</a></li>
55
<li><a href="/schedule.html">schedule a meeting</a></li>
66
<li><a href="/contact.html">contact us</a></li>
7-
<li><a href="/wayland">Wayland</a></li>
87
</ul>

_layouts/default.html

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,13 @@
2020

2121
<main>
2222
<section>
23-
<h2>
24-
{{ page.title }}
25-
</h2>
23+
{% if page.title != "contact us" %}
24+
<h2>
25+
{{ page.title }}
26+
</h2>
27+
{% endif %}
2628
<div>
27-
{{ content }}
29+
{{ content }}
2830
</div>
2931
</section>
3032
</main>

_layouts/home.html

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -28,24 +28,12 @@ <h2>mission</h2>
2828
</section>
2929

3030
<section class="clients" id="clients">
31-
<h2>Current clients</h2>
31+
<h2>we've worked with:</h2>
3232

3333
<ul>
34-
{% for client in site.data.clients %}
35-
<li>
36-
<div class="img-wrapper">
37-
<img title="{{ client.name }} logo" src="/img/{{ client.image }}" />
38-
</div>
39-
<h3><a href="{{ client.url }}" target="_blank" rel="noopener">{{ client.name }}</a></h3>
40-
</li>
41-
{% endfor %}
42-
</ul>
43-
</section>
44-
<section class="clients" id="past_clients">
45-
<h2>Past clients</h2>
34+
{% assign all_clients = site.data.clients | concat: site.data.past_clients %}
4635

47-
<ul>
48-
{% for client in site.data.past_clients %}
36+
{% for client in all_clients %}
4937
<li>
5038
<div class="img-wrapper">
5139
<img title="{{ client.name }} logo" src="/img/{{ client.image }}" />

contact.html

Lines changed: 2 additions & 75 deletions
Original file line numberDiff line numberDiff line change
@@ -3,78 +3,5 @@
33
layout: default
44
---
55
<div>
6-
<p>Fill out the form below or email us at
7-
<a href="mailto:workers@positiondev.com">workers@positiondev.com</a>.</p>
8-
9-
<form id="contact-form"
10-
method="POST">
11-
<fieldset class="basic-data">
12-
<legend>basic data</legend>
13-
<label>
14-
name
15-
<input id="name" name="name">
16-
</label>
17-
18-
<label>
19-
email
20-
<input id="email" name="email">
21-
</label>
22-
</fieldset>
23-
24-
<fieldset class="interested">
25-
<legend>interested in:</legend>
26-
27-
<label><input type="checkbox" name="interested-in" value="webdev" />
28-
web app development
29-
</label>
30-
<label><input type="checkbox" name="interested-in" value="legacy" />
31-
legacy software maintenance
32-
</label>
33-
<label><input type="checkbox" name="interested-in" value="strategy" />
34-
digital strategy
35-
</label>
36-
<label><input type="checkbox" name="interested-in" value="jobs" />
37-
jobs
38-
</label>
39-
<label><input type="checkbox" name="interested-in" value="collaboration" />
40-
collaboration
41-
</label>
42-
<label><input type="checkbox" name="interested-in" value="other">
43-
something else
44-
</label>
45-
</fieldset>
46-
47-
<label class="tell-more">tell us more: <br />
48-
<textarea name="tell-us-more" rows="4"></textarea>
49-
</label>
50-
51-
<fieldset class="heard-about">
52-
<legend>heard about position through:</legend>
53-
<label><input type="checkbox" name="heard-about-via" value="referral" />
54-
a referral
55-
</label>
56-
<label><input type="checkbox" name="heard-about-via" value="event"/>
57-
an event
58-
</label>
59-
<label><input type="checkbox" name="heard-about-via" value="search" />
60-
search
61-
</label>
62-
<label><input type="checkbox" name="heard-about-via" value="social"/>
63-
social media
64-
</label>
65-
<label><input type="checkbox" name="heard-about-via" value="other" />
66-
something else
67-
</label>
68-
</fieldset>
69-
70-
<div class="button-wrapper">
71-
<input type="submit" id="submit-button" value="send" />
72-
</div>
73-
</form>
74-
75-
<div id="thank-you">
76-
<h3 id="thank-you-name">thank you</h3>
77-
78-
<p>We'll get back to you shortly.</p>
79-
</div>
80-
</div>
6+
<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>
7+
</div>

wayland.html

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)