This repository has been archived by the owner on Mar 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Customized our calls to action and linkage. Still need to comment out Project section until we have some we want to share.
- Loading branch information
Showing
90 changed files
with
16,286 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
_site/ | ||
|
||
site/ | ||
.sass-cache/ | ||
.jekyll-metadata | ||
|
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,45 @@ | ||
# Site settings | ||
title: Evangelist Collective | ||
email: [email protected] | ||
url: https://evangelistcollective.github.io | ||
description: "We Are Developer Evangelists- and So Can You! exists to facilitate sharing information, resources and encouragement among the Developer Evangelist community." | ||
|
||
# Contact form: comment the line below if you want to stick with the default PHP contact form | ||
contact: static | ||
|
||
# Color settings (hex-codes without the leading hash-tag) | ||
color: | ||
primary: 18bc9c #80B3FF | ||
secondary: 2c3e50 #FD6E8A | ||
secondary-dark: 233140 #A2122F | ||
|
||
# Footer settings -- these are titles of the section | ||
footer: | ||
copyright: We Are Developer Evangelists | ||
location: Location | ||
social: Around the Web | ||
credits: Credits | ||
|
||
# Social networks usernames (many more available: google-plus, flickr, dribbble, pinterest, instagram, tumblr, linkedin, etc.) | ||
social: | ||
- title: slack | ||
url: http://evangelistcollective.slack.com | ||
- title: github | ||
url: http://github.com/evangelistcollective | ||
- title: twitter | ||
url: https://twitter.com/mary_grace/lists | ||
|
||
|
||
# Postal address (add as many lines as necessary) | ||
address: | ||
- line: The closest airport to | ||
- line: San Francisco, CA (Mary) | ||
- line: Denver, CO (Dave) | ||
- line: Boston, MA (Matt) | ||
|
||
# Credits content | ||
credits: 'Our collective is an inclusive thought experiment started by Dave Josephson. This site is build by <a href="https://twitter.com/mjbrender">Matt Brender</a> on Freelancer: a free to use, open source Bootstrap theme created by <a href="http://startbootstrap.com">Start Bootstrap</a>.' | ||
|
||
# Build settings | ||
markdown: kramdown | ||
permalink: pretty |
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,24 @@ | ||
<!-- About Section --> | ||
<section class="success" id="about"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-lg-12 text-center"> | ||
<h2>About Us</h2> | ||
<hr class="star-light"> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-lg-4 col-lg-offset-2"> | ||
<p>We Are Developer Evangelists- and So Can You! (WADE) exists to facilitate sharing information, resources and encouragement among the Developer Evangelist community.</p> | ||
</div> | ||
<div class="col-lg-4"> | ||
<p>If you share a passion for the Developer community and you would like to get to know a great group of friendly peers, reach out about joining the collective.</p> | ||
</div> | ||
<div class="col-lg-8 col-lg-offset-2 text-center"> | ||
<a href="#" class="btn btn-lg btn-outline"> | ||
<i class="fa fa-slack"></i> Join Us | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
</section> |
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,54 @@ | ||
<!-- Contact Section --> | ||
<section id="contact"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-lg-12 text-center"> | ||
<h2>Contact Me</h2> | ||
<hr class="star-primary"> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-lg-8 col-lg-offset-2"> | ||
<!-- To configure the contact form email address, go to mail/contact_me.php and update the email address in the PHP file on line 19. --> | ||
<!-- The form should work on most web servers, but if the form is not working you may need to configure your web server differently. --> | ||
<form name="sentMessage" id="contactForm" novalidate> | ||
<div class="row control-group"> | ||
<div class="form-group col-xs-12 floating-label-form-group controls"> | ||
<label>Name</label> | ||
<input type="text" class="form-control" placeholder="Name" id="name" required data-validation-required-message="Please enter your name."> | ||
<p class="help-block text-danger"></p> | ||
</div> | ||
</div> | ||
<div class="row control-group"> | ||
<div class="form-group col-xs-12 floating-label-form-group controls"> | ||
<label>Email Address</label> | ||
<input type="email" class="form-control" placeholder="Email Address" id="email" required data-validation-required-message="Please enter your email address."> | ||
<p class="help-block text-danger"></p> | ||
</div> | ||
</div> | ||
<div class="row control-group"> | ||
<div class="form-group col-xs-12 floating-label-form-group controls"> | ||
<label>Phone Number</label> | ||
<input type="tel" class="form-control" placeholder="Phone Number" id="phone" required data-validation-required-message="Please enter your phone number."> | ||
<p class="help-block text-danger"></p> | ||
</div> | ||
</div> | ||
<div class="row control-group"> | ||
<div class="form-group col-xs-12 floating-label-form-group controls"> | ||
<label>Message</label> | ||
<textarea rows="5" class="form-control" placeholder="Message" id="message" required data-validation-required-message="Please enter a message."></textarea> | ||
<p class="help-block text-danger"></p> | ||
</div> | ||
</div> | ||
<br> | ||
<div id="success"></div> | ||
<div class="row"> | ||
<div class="form-group col-xs-12"> | ||
<button type="submit" class="btn btn-success btn-lg">Send</button> | ||
</div> | ||
</div> | ||
</form> | ||
</div> | ||
</div> | ||
</div> | ||
</section> |
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,49 @@ | ||
<!-- Contact Section --> | ||
<section id="contact"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-lg-12 text-center"> | ||
<h2>Contact Me</h2> | ||
<hr class="star-primary"> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-lg-8 col-lg-offset-2"> | ||
<form action="//formspree.io/[email protected]" method="POST" name="sentMessage" id="contactForm" novalidate> | ||
<div class="row control-group"> | ||
<div class="form-group col-xs-12 floating-label-form-group controls"> | ||
<label>Name</label> | ||
<input type="text" name="name" class="form-control" placeholder="Name" id="name" required data-validation-required-message="Please enter your name."> | ||
<p class="help-block text-danger"></p> | ||
</div> | ||
</div> | ||
<div class="row control-group"> | ||
<div class="form-group col-xs-12 floating-label-form-group controls"> | ||
<label>Email Address</label> | ||
<input type="email" name="_replyto" class="form-control" placeholder="Email Address" id="email" required data-validation-required-message="Please enter your email address."> | ||
<p class="help-block text-danger"></p> | ||
</div> | ||
</div> | ||
<div> | ||
<input type="hidden" name="_subject" value="New submission!"> | ||
<input type="text" name="_gotcha" style="display:none" /> | ||
</div> | ||
<div class="row control-group"> | ||
<div class="form-group col-xs-12 floating-label-form-group controls"> | ||
<label>Message</label> | ||
<textarea rows="5" name="message" class="form-control" placeholder="Message" id="message" required data-validation-required-message="Please enter a message."></textarea> | ||
<p class="help-block text-danger"></p> | ||
</div> | ||
</div> | ||
<br> | ||
<div id="success"></div> | ||
<div class="row"> | ||
<div class="form-group col-xs-12"> | ||
<button type="submit" class="btn btn-success btn-lg">Send</button> | ||
</div> | ||
</div> | ||
</form> | ||
</div> | ||
</div> | ||
</div> | ||
</section> |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.