Last active
September 24, 2016 13:07
-
-
Save tiagoduarte/e6a6105eb0d4a7642b404a94e7260998 to your computer and use it in GitHub Desktop.
umbraco contact form part 3
This file contains hidden or 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
| @inherits Umbraco.Web.Mvc.UmbracoTemplatePage | |
| @{ | |
| Layout = "umbLayout.cshtml"; | |
| } | |
| <div class="darkBg"> | |
| <div id="main-wrapper"> | |
| <div id="main" class="container"> | |
| <div class="row"> | |
| <div class="col-md-7 col-sm-12"> | |
| <div id="contactFom" class="row"> | |
| @{ | |
| Html.RenderPartial("~/Views/Partials/ContactFormPartial.cshtml", new ContactForm.Models.ContactModel { }); | |
| } | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment