9 |
10 | @Html.PageLink(page)
11 |
12 | @if(Model.ShowPublishDate && page.StartPublish.HasValue)
13 | {
14 |
@Html.DisplayFor(x => page.StartPublish)
15 | }
16 | @if(Model.ShowIntroduction && page is SitePageData)
17 | {
18 | var withTeaserText = (SitePageData) page;
19 |
@withTeaserText.TeaserText
20 | }
21 |
22 |
23 | }
24 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/Views/Preview/Index.cshtml:
--------------------------------------------------------------------------------
1 | @model PreviewModel
2 |
3 | @foreach(var area in Model.Areas)
4 | {
5 | if(area.Supported)
6 | {
7 | @Html.Partial("TemplateHint", string.Format(@Html.Translate("/preview/heading"), Model.PreviewContent.Name, @Html.Translate(area.AreaName)))
8 |
9 | @Html.DisplayFor(x => area.ContentArea, new {Tag = area.AreaTag})
10 |
11 | }
12 | else
13 | {
14 | @Html.Partial("TemplateHint", string.Format(@Html.Translate("/preview/norenderer"), Model.PreviewContent.Name, @Html.Translate(area.AreaName)))
15 | }
16 | }
17 |
18 | @if(!Model.Areas.Any())
19 | {
20 | @Html.Partial("TemplateHint", string.Format(@Html.Translate("/preview/norendereratall"), Model.PreviewContent.Name))
21 | }
22 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/Views/ProductPage/Index.cshtml:
--------------------------------------------------------------------------------
1 | @using AlloyTemplates
2 | @model PageViewModel
3 |
4 | @{ Layout = "~/Views/Shared/Layouts/_TwoPlusOne.cshtml"; }
5 |
6 | x.CurrentPage.PageName)>@Model.CurrentPage.PageName
7 | x.CurrentPage.MetaDescription)>@Model.CurrentPage.MetaDescription
8 |
9 |
x.CurrentPage.MainBody)>
10 | @Html.DisplayFor(m => m.CurrentPage.MainBody)
11 |
12 |
13 | @Html.PropertyFor(x => x.CurrentPage.MainContentArea, new { CssClass = "row", Tag = Global.ContentAreaTags.TwoThirdsWidth })
14 |
15 | @section RelatedContent
16 | {
17 | x.CurrentPage.PageImage)>
18 |
)
19 |
20 |
21 |
22 |
x.CurrentPage.PageName)>@Model.CurrentPage.PageName
23 | @Html.PropertyFor(x => x.CurrentPage.UniqueSellingPoints)
24 |
25 |
26 | @Html.PropertyFor(x => x.CurrentPage.RelatedContentArea, new { CssClass = "row", Tag = Global.ContentAreaTags.OneThirdWidth })
27 | }
28 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/Views/Register/Index.cshtml:
--------------------------------------------------------------------------------
1 |
2 |
3 | @using System.Web.Optimization
4 | @using AlloyTemplates.Controllers
5 | @model AlloyTemplates.Models.RegisterViewModel
6 | @{
7 | Layout = "";
8 | }
9 |
10 |
11 |
12 | Create Administrator Account
13 | @Styles.Render("~/bundles/css")
14 | @Scripts.Render("~/bundles/js")
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
Create Administrator Account
23 |
24 | @using (Html.BeginForm("/", "Register", FormMethod.Post))
25 | {
26 | @Html.AntiForgeryToken()
27 |
28 | @Html.LabelFor(m => m.Username)
29 | @Html.TextBoxFor(m => m.Username)
30 | @Html.ValidationMessageFor(m => m.Username)
31 |
32 |
33 | @Html.LabelFor(m => m.Email)
34 | @Html.TextBoxFor(m => m.Email)
35 | @Html.ValidationMessageFor(m => m.Email)
36 |
37 |
38 | @Html.LabelFor(m => m.Password)
39 | @Html.PasswordFor(m => m.Password)
40 | @Html.ValidationMessageFor(m => m.Password)
41 |
42 |
43 | @Html.LabelFor(m => m.ConfirmPassword)
44 | @Html.PasswordFor(m => m.ConfirmPassword)
45 | @Html.ValidationMessageFor(m => m.ConfirmPassword)
46 |
47 |
48 | @Html.ValidationMessage(RegisterController.ErrorKey)
49 |
50 |
51 |
52 |
53 | }
54 |
55 |
56 |
57 |
58 |
59 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/Views/SearchPage/Index.cshtml:
--------------------------------------------------------------------------------
1 | @using EPiServer.Editor
2 | @using EPiServer.Security
3 | @model SearchContentModel
4 |
5 | @{
6 | Layout = "~/Views/Shared/Layouts/_TwoPlusOne.cshtml";
7 | }
8 |
9 |
23 |
24 | @if(Model.Hits != null)
25 | {
26 |
27 |
28 |
@Html.Translate("/searchpagetemplate/result")
29 |
30 | @Html.Translate("/searchpagetemplate/searchfor") @Model.SearchedQuery
31 | @Html.Translate("/searchpagetemplate/resultedin")
32 | @if(Model.NumberOfHits > 0)
33 | {
34 | @Model.NumberOfHits
35 | }
36 | else
37 | {
38 | @Html.Translate("/searchpagetemplate/zero")
39 | }
40 | @Html.Translate("/searchpagetemplate/hits")
41 |
42 |
43 |
44 |
45 |
46 |
47 | @foreach (var hit in Model.Hits)
48 | {
49 |
50 |
51 |
@hit.Excerpt
52 |
53 |
54 | }
55 |
56 |
57 |
58 | }
59 |
60 | @if(Model.SearchServiceDisabled && PrincipalInfo.HasEditAccess)
61 | {
62 | @Html.Partial("TemplateHint", Html.Translate("/searchpagetemplate/disabled" ))
63 | }
64 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/Views/Shared/Blocks/ButtonBlock.cshtml:
--------------------------------------------------------------------------------
1 | @model ButtonBlock
2 |
3 | m.ButtonText)>
4 | @{
5 | var buttonText = string.IsNullOrWhiteSpace(Model.ButtonText)
6 | ? Html.Translate("/blocks/buttonblockcontrol/buttondefaulttext")
7 | : Model.ButtonText;
8 | }
9 | @buttonText
10 |
11 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/Views/Shared/Blocks/EditorialBlock.cshtml:
--------------------------------------------------------------------------------
1 | @model EditorialBlock
2 |
3 | x.MainBody)>
4 | @Html.DisplayFor(x => Model.MainBody)
5 |
6 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/Views/Shared/Blocks/JumbotronBlockWide.cshtml:
--------------------------------------------------------------------------------
1 | @model JumbotronBlock
2 |
3 |
4 |
5 | @Html.PropertyFor(m=>m.Image)
6 |
7 |
8 |
13 |
14 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/Views/Shared/Blocks/NoRenderer.cshtml:
--------------------------------------------------------------------------------
1 | @using EPiServer.Shell.Web.Mvc.Html
2 | @Html.Partial("TemplateHint", @Html.Translate("/blocks/norenderer/message"))
3 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/Views/Shared/Blocks/SiteLogotypeBlock.cshtml:
--------------------------------------------------------------------------------
1 | @model SiteLogotypeBlock
2 |
3 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/Views/Shared/Blocks/TeaserBlock.cshtml:
--------------------------------------------------------------------------------
1 | @using EPiServer.Core
2 | @using AlloyTemplates.Controllers
3 | @model TeaserBlock
4 |
5 | @*Link the teaser block only if a link has been set and not displayed in preview*@
6 | @using(Html.BeginConditionalLink(
7 | !ContentReference.IsNullOrEmpty(Model.Link) && !(ViewContext.Controller is PreviewController),
8 | Url.PageLinkUrl(Model.Link),
9 | Model.Heading))
10 | {
11 |
x.Heading)>@Model.Heading
12 |
x.Text)>@Model.Text
13 |
x.Image)>
)
14 | }
15 |
16 |
17 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/Views/Shared/Blocks/TeaserBlockWide.cshtml:
--------------------------------------------------------------------------------
1 | @using EPiServer.Core
2 | @using AlloyTemplates.Controllers
3 | @model TeaserBlock
4 |
5 |
6 | @*Link the teaser block only if a link has been set and not displayed in preview*@
7 | @using(Html.BeginConditionalLink(
8 | !ContentReference.IsNullOrEmpty(Model.Link) && !(ViewContext.Controller is PreviewController),
9 | Url.PageLinkUrl(Model.Link),
10 | Model.Heading))
11 | {
12 |
21 | }
22 |
23 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/Views/Shared/Breadcrumbs.cshtml:
--------------------------------------------------------------------------------
1 | @using EPiServer.Core
2 | @using EPiServer.Web
3 | @*Helper used as template for a page in the bread crumb, recursively triggering the rendering of the next page*@
4 | @helper ItemTemplate(HtmlHelpers.MenuItem breadCrumbItem) {
5 | if (breadCrumbItem.Selected)
6 | {
7 | if (breadCrumbItem.Page.HasTemplate() && !breadCrumbItem.Page.ContentLink.CompareToIgnoreWorkID(Model.CurrentPage.ContentLink))
8 | {
9 | @Html.PageLink(breadCrumbItem.Page)
10 | }
11 | else
12 | {
13 | @breadCrumbItem.Page.PageName
14 | }
15 | if (!breadCrumbItem.Page.ContentLink.CompareToIgnoreWorkID(Model.CurrentPage.ContentLink))
16 | {
17 | /
18 | @Html.MenuList(breadCrumbItem.Page.ContentLink, ItemTemplate)
19 | }
20 | }
21 | }
22 |
23 |
24 |
25 |
26 | @Html.ContentLink(SiteDefinition.Current.StartPage)
27 | /
28 | @Html.MenuList(SiteDefinition.Current.StartPage, ItemTemplate, requireVisibleInMenu: false, requirePageTemplate: false)
29 |
30 |
31 |
32 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/Views/Shared/DisplayTemplates/ContactPage.cshtml:
--------------------------------------------------------------------------------
1 | @model ContactPage
2 |
3 |
4 | @if(Model != null)
5 | {
6 | @Model.PageName
7 | @Html.Translate("/contact/phone")@: : @Model.Phone
8 | @Html.Translate("/contact/email")@: : @Html.DisplayFor(m => m.Email)
9 | }
10 | else
11 | {
12 | @Html.Translate("/contact/noneselected")
13 | }
14 |
15 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/Views/Shared/DisplayTemplates/DateTime.cshtml:
--------------------------------------------------------------------------------
1 | @model DateTime
2 | @Model.ToString("d MMMM yyyy")
3 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/Views/Shared/DisplayTemplates/Image.cshtml:
--------------------------------------------------------------------------------
1 | @model EPiServer.Core.ContentReference
2 | @if (Model != null)
3 | {
4 |
5 | }
6 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/Views/Shared/DisplayTemplates/StringsCollection.cshtml:
--------------------------------------------------------------------------------
1 | @model IEnumerable
2 | @if(Model != null && Model.Any())
3 | {
4 |
5 | @foreach(var stringValue in Model)
6 | {
7 | - @stringValue
8 | }
9 |
10 | }
11 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/Views/Shared/DisplayTemplates/_ReadMe.txt:
--------------------------------------------------------------------------------
1 | The views in this folder are used when rendering properties using Html.DisplayFor and Html.PropertyFor.
2 | Display templates are selected based on the type name of the property and, optionally, by UIHint and DataType attributes added to the property.
3 | Note that the CMS adds a number of view templates which do not exist in this folder but found through a view engine which the CMS adds at start up.
4 | Those view templates can be found in \Application\Util\Views\Shared\DisplayTemplates. Views in this folder takes precedence meaning
5 | that we can override those templates, which is currently done for content areas.
6 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/Views/Shared/Footer.cshtml:
--------------------------------------------------------------------------------
1 | @model IPageViewModel
2 |
3 |
40 |
41 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/Views/Shared/Header.cshtml:
--------------------------------------------------------------------------------
1 | @using EPiServer.Editor
2 | @using EPiServer.Core
3 | @using EPiServer.Web
4 | @model IPageViewModel
5 |
6 |
51 |
52 |
53 |
54 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/Views/Shared/Layouts/_LeftNavigation.cshtml:
--------------------------------------------------------------------------------
1 | @model IPageViewModel
2 |
3 | @{ Layout = "~/Views/Shared/Layouts/_Root.cshtml"; }
4 |
5 | @{Html.RenderPartial("Breadcrumbs", Model);}
6 |
7 |
8 |
9 |
10 |
11 | @{Html.RenderPartial("SubNavigation", Model);}
12 | @RenderSection("RelatedContent", false)
13 |
14 |
15 |
16 |
17 |
18 | @RenderBody()
19 |
20 |
21 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/Views/Shared/Layouts/_Root.cshtml:
--------------------------------------------------------------------------------
1 | @using System.Web.Optimization
2 | @using EPiServer.Framework.Web.Mvc.Html
3 | @using AlloyTemplates.Business
4 | @model IPageViewModel
5 |
6 |
7 |
8 |
9 |
10 |
11 | @Model.CurrentPage.MetaTitle
12 | @if (Model.CurrentPage.MetaKeywords != null && Model.CurrentPage.MetaKeywords.Length > 0)
13 | {
14 |
15 | }
16 | @if (!string.IsNullOrWhiteSpace(Model.CurrentPage.MetaDescription))
17 | {
18 |
19 | }
20 |
21 | @Html.CanonicalLink()
22 | @Html.AlternateLinks()
23 | @Styles.Render("~/bundles/css")
24 | @Scripts.Render("~/bundles/js")
25 | @Html.RequiredClientResources("Header") @*Enable components to require resources. For an example, see the view for VideoBlock.*@
26 | @Html.RenderEPiServerQuickNavigator()
27 |
28 |
29 |
30 | @if (Model.Layout.IsInReadonlyMode)
31 | {
32 | Html.RenderPartial("Readonly", Model);
33 | }
34 | @Html.FullRefreshPropertiesMetaData()
35 |
36 | @if(!Model.Layout.HideHeader)
37 | {
38 | Html.RenderPartial("Header", Model);
39 | }
40 | @RenderBody()
41 | @if(!Model.Layout.HideFooter)
42 | {
43 | Html.RenderPartial("Footer", Model);
44 | }
45 |
46 | @Html.RequiredClientResources("Footer")
47 |
48 |
49 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/Views/Shared/Layouts/_TwoPlusOne.cshtml:
--------------------------------------------------------------------------------
1 | @using AlloyTemplates
2 | @model IPageViewModel
3 | @{ Layout = "~/Views/Shared/Layouts/_Root.cshtml"; }
4 |
5 | @{Html.RenderPartial("Breadcrumbs");}
6 |
7 |
8 |
9 |
10 | @RenderBody()
11 |
12 |
13 |
14 | @if (IsSectionDefined("RelatedContent"))
15 | {
16 | @RenderSection("RelatedContent")
17 | }
18 | else if (Model.CurrentPage is IHasRelatedContent)
19 | {
20 | @Html.PropertyFor(x => ((IHasRelatedContent)x.CurrentPage).RelatedContentArea, new { CssClass = "row", Tag = Global.ContentAreaTags.OneThirdWidth })
21 | }
22 |
23 |
24 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/Views/Shared/PagePartials/ContactPage.cshtml:
--------------------------------------------------------------------------------
1 | @model ContactPage
2 |
3 |
4 |
)
5 |
@Model.PageName
6 |
@Model.TeaserText
7 |
8 | @Html.Translate("/contact/email"): @Html.DisplayFor(x => x.Email)
9 | @Html.Translate("/contact/phone"): @Model.Phone
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/Views/Shared/PagePartials/ContactPageWide.cshtml:
--------------------------------------------------------------------------------
1 | @model ContactPage
2 |
15 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/Views/Shared/PagePartials/Page.cshtml:
--------------------------------------------------------------------------------
1 | @using EPiServer.Core
2 | @model SitePageData
3 |
4 |
5 | @using(Html.BeginConditionalLink(Model.HasTemplate(), Url.PageLinkUrl(Model), Model.PageName))
6 | {
7 |
@Model.PageName
8 |
@Model.TeaserText
9 | @Html.DisplayFor(m => m.PageImage)
10 | }
11 |
12 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/Views/Shared/PagePartials/PageWide.cshtml:
--------------------------------------------------------------------------------
1 | @using EPiServer.Core
2 | @model SitePageData
3 |
4 | @using(Html.BeginConditionalLink(Model.HasTemplate(), Url.PageLinkUrl(Model), Model.PageName))
5 | {
6 |
13 | }
14 |
15 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/Views/Shared/Readonly.cshtml:
--------------------------------------------------------------------------------
1 | @model IPageViewModel
2 |
3 | @Html.Translate("/Readonly/Message")
4 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/Views/Shared/SubNavigation.cshtml:
--------------------------------------------------------------------------------
1 | @model IPageViewModel
2 |
3 | @helper ItemTemplate(HtmlHelpers.MenuItem firstLevelItem) {
4 |
10 |
11 |
12 | @Html.MenuList(firstLevelItem.Page.ContentLink, SubLevelItemTemplate)
13 |
14 |
15 | }
16 |
17 | @helper SubLevelItemTemplate(HtmlHelpers.MenuItem subLevelItem) {
18 |
19 | @Html.PageLink(subLevelItem.Page)
20 | @*To show more levels call Html.MenuList recursively here if subLevelItem.Selected == true*@
21 |
22 | }
23 |
24 |
25 |
26 | @if(Model.Section != null) {
27 | @Html.MenuList(Model.Section.ContentLink, ItemTemplate)
28 | }
29 |
30 |
31 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/Views/Shared/TemplateError.cshtml:
--------------------------------------------------------------------------------
1 | @model ContentRenderingErrorModel
2 |
3 |
@string.Format(Html.Translate("/renderingerror/heading"), Model.ContentTypeName, Model.ContentName)
4 |
5 | @Model.Exception.Message
6 | @Model.Exception.StackTrace
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/Views/Shared/TemplateHint.cshtml:
--------------------------------------------------------------------------------
1 | @model string
2 | @Model
3 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/Views/StandardPage/Index.cshtml:
--------------------------------------------------------------------------------
1 | @using AlloyTemplates
2 | @model PageViewModel
3 |
4 | @{ Layout = "~/Views/Shared/Layouts/_LeftNavigation.cshtml"; }
5 |
6 | x.CurrentPage.PageName)>@Model.CurrentPage.PageName
7 | x.CurrentPage.MetaDescription)>@Model.CurrentPage.MetaDescription
8 |
9 |
x.CurrentPage.MainBody)>
10 | @Html.DisplayFor(m => m.CurrentPage.MainBody)
11 |
12 |
13 | @Html.PropertyFor(x => x.CurrentPage.MainContentArea, new { CssClass = "row", Tag = Global.ContentAreaTags.TwoThirdsWidth })
14 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/Views/StartPage/Index.cshtml:
--------------------------------------------------------------------------------
1 | @using AlloyTemplates
2 | @model PageViewModel
3 |
4 | @Html.PropertyFor(x => x.CurrentPage.MainContentArea, new { CssClass = "row equal-height", tag = Global.ContentAreaTags.FullWidth })
5 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/Views/VideoFile/Index.cshtml:
--------------------------------------------------------------------------------
1 | @using EPiServer.Framework.Web.Resources
2 | @model VideoViewModel
3 | @{
4 | ClientResources.RequireScript(Href("~/static/jwplayer/jwplayer.js"));
5 |
6 | //The video element's ID needs to be unique in order for several video blocks and possible the same video block, to work on the same page
7 | var containerId = "video-container-" + Guid.NewGuid().GetHashCode();
8 | }
9 | @Html.FullRefreshPropertiesMetaData(new []{"Url"})
10 | m.Url)>
11 |
14 |
15 |
30 |
31 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/Views/Web.config:
--------------------------------------------------------------------------------
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 |
36 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/Views/_ReadMe.txt:
--------------------------------------------------------------------------------
1 | View locations in Alloy follows a number of conventions in addition to the default ASP.NET MVC conventions:
2 | * Views for pages and blocks with their own controllers use standard ASP.NET MVC conventions - /.cshtml
3 | * Page types which don't have their own controller are mapped to /Index.cshtml by DefaultPageController
4 | * Views for block types which don't have their own controllers are found in Shared/Blocks
5 | * Partial views for page types which don't have their own controllers for partial requests are found in Shared/PagePartials
6 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/Views/_viewstart.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | Layout = "~/Views/Shared/Layouts/_Root.cshtml";
3 | }
4 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/Web.Debug.config:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/Web.Release.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/episerver.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/favicon.ico:
--------------------------------------------------------------------------------
1 | h ( ... >>> Ɋ9 777 000 $$$ 666 !!! ###
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/global.asax:
--------------------------------------------------------------------------------
1 | <%@ Application Codebehind="Global.asax.cs" Language="C#" Inherits="AlloyTemplates.EPiServerApplication" %>
2 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/module.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/modules/_protected/CMS/CMS.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/episerver/alloy-mvc-template/58a23bafa64d682adfaf41ceeaf2b13809981bc3/src/Alloy.Mvc.Template/modules/_protected/CMS/CMS.zip
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/modules/_protected/CMS/web.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/modules/_protected/EPiServer.Cms.TinyMce/EPiServer.Cms.TinyMce.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/episerver/alloy-mvc-template/58a23bafa64d682adfaf41ceeaf2b13809981bc3/src/Alloy.Mvc.Template/modules/_protected/EPiServer.Cms.TinyMce/EPiServer.Cms.TinyMce.zip
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/modules/_protected/EPiServer.Cms.TinyMce/web.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/modules/_protected/EPiServer.Search.Cms/IndexContent.aspx:
--------------------------------------------------------------------------------
1 | <%@ Page Language="C#" AutoEventWireup="false" CodeBehind="IndexContent.aspx.cs" Inherits="EPiServer.UI.Admin.IndexContent" Title="Index Content" %>
2 |
3 |
4 |
5 |
<%: Translate("/admin/indexcontent/latestindexing") %>
6 |
7 |
8 |
9 |
10 | <%: Translate("/admin/indexcontent/resetinfo") %>
11 |
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/modules/_protected/EPiServer.Search.Cms/module.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/modules/_protected/Shell/Shell.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/episerver/alloy-mvc-template/58a23bafa64d682adfaf41ceeaf2b13809981bc3/src/Alloy.Mvc.Template/modules/_protected/Shell/Shell.zip
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/modules/_protected/Shell/web.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/modulesbin/.gitkeep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/episerver/alloy-mvc-template/58a23bafa64d682adfaf41ceeaf2b13809981bc3/src/Alloy.Mvc.Template/modulesbin/.gitkeep
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/modulesbin/README.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/episerver/alloy-mvc-template/58a23bafa64d682adfaf41ceeaf2b13809981bc3/src/Alloy.Mvc.Template/modulesbin/README.txt
--------------------------------------------------------------------------------
/src/Alloy.Mvc.Template/packages.config:
--------------------------------------------------------------------------------
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 |
--------------------------------------------------------------------------------