-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathcontact.qmd
106 lines (77 loc) · 3.69 KB
/
contact.qmd
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
99
100
101
102
103
104
105
106
---
pagetitle: Silvia Canelón - Contact
# title: Send me a note
name: Contact Form
page-layout: article
format:
html:
grid:
margin-width: 0px
sidebar-width: 0px
header-includes: >
<link rel="stylesheet" href="assets/contact.css">
resources:
- assets/contact.css
---
::: {.grid}
::: {.g-col-5 #note}
# Send me a note {{< fa feather-pointed >}}
You can use this form to contact me about speaking engagements, collaborations, or simply to say hello.
I also love hearing if my educational materials have been helpful for you, and how they could be improved — particularly if they could be made more accessible {{< bi heart-fill >}}
<a class="link-dark me-1" href="/accessibility.html" title="Accessibility commitment" target="_blank" rel="noopener">{{< fa universal-access >}}</a>
<a class="link-dark me-1" href="https://bsky.app/profile/silviacanelon.com" title="bluesky" target="_blank" rel="noopener">{{< fa brands bluesky >}}</a>
<a class="link-dark me-1" href="https://linkedin.com/in/spcanelon" title="LinkedIn" target="_blank" rel="noopener">{{< fa brands linkedin >}}</a>
<a class="link-dark me-1" href="https://github.com/spcanelon" title="github" target="_blank" rel="noopener">{{< fa brands github >}}</a>
<!-- <a class="link-dark me-1" href="https://hachyderm.io/@spcanelon" title="mastodon" target="_blank" rel="noopener">{{< fa brands mastodon >}}</a> -->
<a class="link-dark me-1" href="https://orcid.org/0000-0003-1709-1394" title="orcid" target="_blank" rel="noopener">{{< ai orcid >}}</a>
<a class="link-dark me-1" href="https://scholar.google.com/citations?user=GAzkvpcAAAAJ&hl=en&oi=ao" title="Google Scholar" target="_blank"rel="noopener">{{< ai google-scholar >}}</a>
<a class="link-dark me-1" href="https://buttondown.com/spcanelon" title="Newsletter" target="_blank" rel="noopener">{{< fa envelope >}}</a>
:::
<!-- source: https://github.com/mccarthy-m-g/tidytales/blob/main/about/index.qmd#L24-L46 -->
::: {.g-col-1}
:::
::: {.g-col-6 #form}
<form
style="margin-top: -5em;"
action="https://formspree.io/f/mwkapgzw" method="POST" accept-charset="utf-8">
<label for="full-name">Full Name</label>
<input type="text" name="name" id="full-name" class="form-control" placeholder="First and Last" required>
<label for="email-address">Email Address</label>
<input type="email" name="_replyto" id="email-address" class="form-control" placeholder="your@email.here" required>
<label for="message">Message</label>
<textarea rows="6" name="message" id="message" class="form-control" placeholder="Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Donec ullamcorper nulla non metus auctor fringilla nullam quis risus." required></textarea>
<button type="submit" class="btn btn-primary mt-4">Send message</button>
</form>
:::
::: {.g-col-5 #buttondown}
# Sign up for my newsletter {{< fa envelope >}}
You can use this form to sign up to receive a little e-mail note from me anytime I post something new on my website.
:::
::: {.g-col-1}
:::
::: {.g-col-6 #buttondown-form}
```{=html}
<form
style="margin-top: 4em;"
action="https://buttondown.com/api/emails/embed-subscribe/spcanelon"
method="post"
target="popupwindow"
onsubmit="window.open('https://buttondown.com/spcanelon?tag=website', 'popupwindow')"
class="embeddable-buttondown-form"
>
<label for="bd-email">Email Address</label>
<input
class="form-control"
placeholder="your@email.here"
type="email" name="email" id="bd-email" />
<input
class="btn btn-primary mt-1"
type="submit" value="Subscribe" />
<p>
<a href="https://buttondown.com/refer/spcanelon" target="_blank">Powered by Buttondown.</a>
</p>
</form>
```
:::
:::
<!-- end grid -->