-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
formatting, fix spelling, add contact form
- Loading branch information
Showing
16 changed files
with
6,512 additions
and
5,331 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json", | ||
"version": "0.2", | ||
"dictionaryDefinitions": [ | ||
{ | ||
"name": "project-words", | ||
"path": "./project-words.txt", | ||
"addWords": true | ||
} | ||
], | ||
"dictionaries": ["project-words"], | ||
"ignorePaths": [ | ||
"**/_media/**", | ||
"**/*.yml", | ||
"**/*.txt", | ||
"**/*.css", | ||
"**/venv/**", | ||
"**/*.csv", | ||
"/project-words.txt" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Contact Us | ||
|
||
<section> | ||
<div class="md-grid" | ||
style="max-width: 840px; margin-left: 0; display: flex; justify-content: left;"> | ||
<form method="post" | ||
action="https://forms.un-static.com/forms/3fbb6601b89b6fc6ccb7b324ef3e65abc9ec6a52" | ||
class="md-grid md-form" | ||
style="display: grid; grid-template-columns: 150px 2fr; gap: 10px; width: 100%;"> | ||
<label for="name" class="md-text" style="text-align: left; padding-right: 10px;">Name</label> | ||
<input type="text" id="name" name="name" required class="md-input"> | ||
|
||
<label for="email" class="md-text" style="text-align: left; padding-right: 10px;">Email</label> | ||
<input type="email" id="email" name="email" required class="md-input"> | ||
|
||
<label for="subject" class="md-text" style="text-align: left; padding-right: 10px;">Subject</label> | ||
<input type="text" id="subject" name="subject" required class="md-input"> | ||
|
||
<label for="message" class="md-text" style="text-align: left; padding-right: 10px;">Message</label> | ||
<textarea id="message" name="message" style="height: 200px;" class="md-input"></textarea> | ||
|
||
<div></div> <!-- Empty cell for spacing --> | ||
<button type="submit" class="md-button" style="width: fit-content; justify-self: start;">Send</button> | ||
</form> | ||
|
||
</div> | ||
</section> |
Oops, something went wrong.