|
| 1 | +{{ partial "header" }} |
| 2 | +<div class="main-container"> |
| 3 | + <section class="cover image-slider slider-all-controls controls-inside parallax"> |
| 4 | + <ul class="slides"> |
| 5 | + <li class="overlay image-bg bg-black pt160 pb160"> |
| 6 | + <div class="background-image-holder faded"> |
| 7 | + <img alt="image" class="background-image" src="img/sf-bg.jpg" /> |
| 8 | + </div> |
| 9 | + <div class="container"> |
| 10 | + <div class="row"> |
| 11 | + <div class="col-sm-10 col-sm-offset-1 text-center"> |
| 12 | + <h1 class="mb-xs-16 large">SF Static Web-Tech</h1> |
| 13 | + <p class="lead mb40"> |
| 14 | + A ressource with videos, transcripts, and slides<br/> from the San Francisco meetup on Static Web Tech. |
| 15 | + </p> |
| 16 | + <a class="btn btn-lg" href="http://www.meetup.com/sf-static-web-tech">join the meetup</a> |
| 17 | + </div> |
| 18 | + </div> |
| 19 | + <!--end of row--> |
| 20 | + </div> |
| 21 | + <!--end of container--> |
| 22 | + </li> |
| 23 | + </ul> |
| 24 | + </section> |
| 25 | + <section> |
| 26 | + <div class="container"> |
| 27 | + <div class="row mb80 mb-xs-0"> |
| 28 | + <div class="col-md-8 col-md-offset-2 text-center"> |
| 29 | + <h1>Recent Presentations</h1> |
| 30 | + </div> |
| 31 | + </div> |
| 32 | + <!--end of row--> |
| 33 | + {{ range where .Data.Pages.ByDate "Section" "presentations"}} |
| 34 | + <div class="row v-align-children"> |
| 35 | + <div class="col-md-7 col-sm-6 text-center mb-xs-24"> |
| 36 | + <a href="{{ .Permalink }}"><img class="cast-shadow" alt="Screenshot" src="{{ .Params.cover }}" /></a> |
| 37 | + </div> |
| 38 | + <div class="col-md-4 col-md-offset-1 col-sm-5 col-sm-offset-1"> |
| 39 | + <h3>{{ .Title }}</h3> |
| 40 | + <p>{{ .Description }}</p> |
| 41 | + <a class="btn btn-lg" href="{{ .Permalink }}">Watch presentation</a> |
| 42 | + </div> |
| 43 | + </div> |
| 44 | + {{ end }} |
| 45 | + <!--end of row--> |
| 46 | + </div> |
| 47 | + <!--end of container--> |
| 48 | + </section> |
| 49 | + <section class="bg-secondary" id="contact"> |
| 50 | + <div class="container"> |
| 51 | + <div class="row mb64 mb-xs-24"> |
| 52 | + <div class="col-sm-12 col-md-10 col-md-offset-1 text-center"> |
| 53 | + <h1>Contact</h1> |
| 54 | + </div> |
| 55 | + </div> |
| 56 | + <div class="row"> |
| 57 | + <div class="col-sm-6 col-md-5"> |
| 58 | + <h4 class="uppercase">Get In Touch</h4> |
| 59 | + <p> |
| 60 | + Do you have any questions or would you like to speak at an upcoming event? |
| 61 | + </p> |
| 62 | + <p> |
| 63 | + Reach us at <a href=" mailto:[email protected]" >[email protected]</a><br> |
| 64 | + Join us at <a href="www.meetup.com/staticwebtech">www.meetup.com/staticwebtech</a>. |
| 65 | + </p> |
| 66 | + <p> |
| 67 | + Events are typically held in Wikias conference rooms at 360 3rd Street #750, San Francisco, CA 94107. |
| 68 | + </p> |
| 69 | + <p> |
| 70 | + The SF STW meetup is dedicated to exploring all aspects of MSTW. |
| 71 | + </p> |
| 72 | + </div> |
| 73 | + <div class="col-sm-6 col-md-5 col-md-offset-2"> |
| 74 | + <form class="form-email" data-success="Thanks for your submission, we will be in touch shortly." data-error="Please fill all fields correctly." name="contact" netlify> |
| 75 | + <input type="text" class="validate-required" name="name" placeholder="Your Name" /> |
| 76 | + <input type="text" class="validate-required validate-email" name="email" placeholder="Email Address" /> |
| 77 | + <textarea class="validate-required" name="message" rows="4" placeholder="Message"></textarea> |
| 78 | + <input type="submit" value="Send Message" /> |
| 79 | + </form> |
| 80 | + </div> |
| 81 | + </div> |
| 82 | + <!--end of row--> |
| 83 | + <!--end of row--> |
| 84 | + </div> |
| 85 | + <!--end of container--> |
| 86 | + </section> |
| 87 | +{{ partial "footer" . }} |
0 commit comments