-
Notifications
You must be signed in to change notification settings - Fork 5
/
contact.html
98 lines (89 loc) · 2.34 KB
/
contact.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
---
layout: default
title: Contact Us
---
<main class="fullwidth">
<div id="intro">
<section>
<div class="logo"></div>
<div class="description">
<h2>Contact Us</h2>
<p>
Do you have feedback for us about the podcast?
Do you know somebody who we should talk to?
Do you think we should talk to you about Git?
Get in touch!
</p>
</div>
</section>
</div>
<div class="contact light">
<section>
<div class="logo">
<a href="https://twitter.com/allthingsgit">
<img src="/images/contact/twitter.svg" style="width: 30px; height: 30px;">
</a>
</div>
<div class="description">
<h3><a href="https://twitter.com/allthingsgit">Twitter</a></h3>
<p>
Follow us on Twitter: learn about every episode and
catch up with all the feedback
at
<a href="https://twitter.com/allthingsgit">@allthingsgit</a>.
</p>
</div>
</section>
</div>
<div class="contact dark">
<section>
<div class="logo">
<a href="https://facebook.com/allthingsgit">
<img src="/images/contact/facebook.svg" style="width: 30px; height: 30px;">
</a>
</div>
<div class="description">
<h3>Facebook</h3>
<p>
Add us on Facebook and keep up to date with our
episodes on
<a href="https://www.facebook.com/allthingsgit">Facebook</a>.
</p>
</div>
</section>
</div>
<div class="contact light">
<section>
<div class="logo">
<a href="https://github.com/allthingsgit">
<img src="/images/contact/github.svg" style="width: 30px; height: 30px;">
</a>
</div>
<div class="description">
<h3><a href="https://github.com/allthingsgit">GitHub</a></h3>
<p>
Our website and show notes are available on
<a href="https://github.com/allthingsgit">GitHub</a>.
Notice something wrong? Are we missing something?
Open a pull request!
</p>
</div>
</section>
</div>
<div class="contact dark">
<section>
<div class="logo">
<a href="mailto:[email protected]">
<img src="/images/contact/email.svg" style="width: 30px; height: 30px;">
</a>
</div>
<div class="description">
<h3><a href="mailto:[email protected]">Email</a></h3>
<p>
We want to hear from you: drop us a line at
<a href="mailto:[email protected]">[email protected]</a>.
</p>
</div>
</section>
</div>
</main>