Add WebCms
This commit is contained in:
@@ -0,0 +1,568 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq.Expressions;
|
||||
using System.Web;
|
||||
using Umbraco.Core.Models;
|
||||
using Umbraco.Core.Models.PublishedContent;
|
||||
using Umbraco.Web;
|
||||
using Umbraco.ModelsBuilder;
|
||||
using Umbraco.ModelsBuilder.Umbraco;
|
||||
[assembly: PureLiveAssembly]
|
||||
[assembly:ModelsBuilderAssembly(PureLive = true, SourceHash = "508a57e7748cbe2")]
|
||||
[assembly:System.Reflection.AssemblyVersion("0.0.0.1")]
|
||||
|
||||
|
||||
// FILE: models.generated.cs
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
//
|
||||
// Umbraco.ModelsBuilder v3.0.4.0
|
||||
//
|
||||
// Changes to this file will be lost if the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
namespace Umbraco.Web.PublishedContentModels
|
||||
{
|
||||
/// <summary>Blog Post</summary>
|
||||
[PublishedContentModel("BlogPost")]
|
||||
public partial class BlogPost : PublishedContentModel
|
||||
{
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new const string ModelTypeAlias = "BlogPost";
|
||||
public new const PublishedItemType ModelItemType = PublishedItemType.Content;
|
||||
#pragma warning restore 0109
|
||||
|
||||
public BlogPost(IPublishedContent content)
|
||||
: base(content)
|
||||
{ }
|
||||
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new static PublishedContentType GetModelContentType()
|
||||
{
|
||||
return PublishedContentType.Get(ModelItemType, ModelTypeAlias);
|
||||
}
|
||||
#pragma warning restore 0109
|
||||
|
||||
public static PublishedPropertyType GetModelPropertyType<TValue>(Expression<Func<BlogPost, TValue>> selector)
|
||||
{
|
||||
return PublishedContentModelUtility.GetModelPropertyType(GetModelContentType(), selector);
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Content
|
||||
///</summary>
|
||||
[ImplementPropertyType("content")]
|
||||
public Newtonsoft.Json.Linq.JToken Content
|
||||
{
|
||||
get { return this.GetPropertyValue<Newtonsoft.Json.Linq.JToken>("content"); }
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Introduction
|
||||
///</summary>
|
||||
[ImplementPropertyType("introduction")]
|
||||
public string Introduction
|
||||
{
|
||||
get { return this.GetPropertyValue<string>("introduction"); }
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Blog Post Repository</summary>
|
||||
[PublishedContentModel("BlogPostRepository")]
|
||||
public partial class BlogPostRepository : PublishedContentModel
|
||||
{
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new const string ModelTypeAlias = "BlogPostRepository";
|
||||
public new const PublishedItemType ModelItemType = PublishedItemType.Content;
|
||||
#pragma warning restore 0109
|
||||
|
||||
public BlogPostRepository(IPublishedContent content)
|
||||
: base(content)
|
||||
{ }
|
||||
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new static PublishedContentType GetModelContentType()
|
||||
{
|
||||
return PublishedContentType.Get(ModelItemType, ModelTypeAlias);
|
||||
}
|
||||
#pragma warning restore 0109
|
||||
|
||||
public static PublishedPropertyType GetModelPropertyType<TValue>(Expression<Func<BlogPostRepository, TValue>> selector)
|
||||
{
|
||||
return PublishedContentModelUtility.GetModelPropertyType(GetModelContentType(), selector);
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Hide in bottom navigation?
|
||||
///</summary>
|
||||
[ImplementPropertyType("umbracoNaviHide")]
|
||||
public bool UmbracoNaviHide
|
||||
{
|
||||
get { return this.GetPropertyValue<bool>("umbracoNaviHide"); }
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Home</summary>
|
||||
[PublishedContentModel("Home")]
|
||||
public partial class Home : PublishedContentModel
|
||||
{
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new const string ModelTypeAlias = "Home";
|
||||
public new const PublishedItemType ModelItemType = PublishedItemType.Content;
|
||||
#pragma warning restore 0109
|
||||
|
||||
public Home(IPublishedContent content)
|
||||
: base(content)
|
||||
{ }
|
||||
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new static PublishedContentType GetModelContentType()
|
||||
{
|
||||
return PublishedContentType.Get(ModelItemType, ModelTypeAlias);
|
||||
}
|
||||
#pragma warning restore 0109
|
||||
|
||||
public static PublishedPropertyType GetModelPropertyType<TValue>(Expression<Func<Home, TValue>> selector)
|
||||
{
|
||||
return PublishedContentModelUtility.GetModelPropertyType(GetModelContentType(), selector);
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Content
|
||||
///</summary>
|
||||
[ImplementPropertyType("content")]
|
||||
public Newtonsoft.Json.Linq.JToken Content
|
||||
{
|
||||
get { return this.GetPropertyValue<Newtonsoft.Json.Linq.JToken>("content"); }
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Site Description
|
||||
///</summary>
|
||||
[ImplementPropertyType("siteDescription")]
|
||||
public string SiteDescription
|
||||
{
|
||||
get { return this.GetPropertyValue<string>("siteDescription"); }
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Site Logo
|
||||
///</summary>
|
||||
[ImplementPropertyType("siteLogo")]
|
||||
public object SiteLogo
|
||||
{
|
||||
get { return this.GetPropertyValue("siteLogo"); }
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Site Title
|
||||
///</summary>
|
||||
[ImplementPropertyType("siteTitle")]
|
||||
public string SiteTitle
|
||||
{
|
||||
get { return this.GetPropertyValue<string>("siteTitle"); }
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Landing Page</summary>
|
||||
[PublishedContentModel("LandingPage")]
|
||||
public partial class LandingPage : PublishedContentModel
|
||||
{
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new const string ModelTypeAlias = "LandingPage";
|
||||
public new const PublishedItemType ModelItemType = PublishedItemType.Content;
|
||||
#pragma warning restore 0109
|
||||
|
||||
public LandingPage(IPublishedContent content)
|
||||
: base(content)
|
||||
{ }
|
||||
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new static PublishedContentType GetModelContentType()
|
||||
{
|
||||
return PublishedContentType.Get(ModelItemType, ModelTypeAlias);
|
||||
}
|
||||
#pragma warning restore 0109
|
||||
|
||||
public static PublishedPropertyType GetModelPropertyType<TValue>(Expression<Func<LandingPage, TValue>> selector)
|
||||
{
|
||||
return PublishedContentModelUtility.GetModelPropertyType(GetModelContentType(), selector);
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Content
|
||||
///</summary>
|
||||
[ImplementPropertyType("content")]
|
||||
public Newtonsoft.Json.Linq.JToken Content
|
||||
{
|
||||
get { return this.GetPropertyValue<Newtonsoft.Json.Linq.JToken>("content"); }
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Hide in bottom navigation?
|
||||
///</summary>
|
||||
[ImplementPropertyType("umbracoNaviHide")]
|
||||
public bool UmbracoNaviHide
|
||||
{
|
||||
get { return this.GetPropertyValue<bool>("umbracoNaviHide"); }
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Text Page</summary>
|
||||
[PublishedContentModel("TextPage")]
|
||||
public partial class TextPage : PublishedContentModel
|
||||
{
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new const string ModelTypeAlias = "TextPage";
|
||||
public new const PublishedItemType ModelItemType = PublishedItemType.Content;
|
||||
#pragma warning restore 0109
|
||||
|
||||
public TextPage(IPublishedContent content)
|
||||
: base(content)
|
||||
{ }
|
||||
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new static PublishedContentType GetModelContentType()
|
||||
{
|
||||
return PublishedContentType.Get(ModelItemType, ModelTypeAlias);
|
||||
}
|
||||
#pragma warning restore 0109
|
||||
|
||||
public static PublishedPropertyType GetModelPropertyType<TValue>(Expression<Func<TextPage, TValue>> selector)
|
||||
{
|
||||
return PublishedContentModelUtility.GetModelPropertyType(GetModelContentType(), selector);
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Content
|
||||
///</summary>
|
||||
[ImplementPropertyType("content")]
|
||||
public Newtonsoft.Json.Linq.JToken Content
|
||||
{
|
||||
get { return this.GetPropertyValue<Newtonsoft.Json.Linq.JToken>("content"); }
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Leaf Input</summary>
|
||||
[PublishedContentModel("TextPage1")]
|
||||
public partial class TextPage1 : PublishedContentModel
|
||||
{
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new const string ModelTypeAlias = "TextPage1";
|
||||
public new const PublishedItemType ModelItemType = PublishedItemType.Content;
|
||||
#pragma warning restore 0109
|
||||
|
||||
public TextPage1(IPublishedContent content)
|
||||
: base(content)
|
||||
{ }
|
||||
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new static PublishedContentType GetModelContentType()
|
||||
{
|
||||
return PublishedContentType.Get(ModelItemType, ModelTypeAlias);
|
||||
}
|
||||
#pragma warning restore 0109
|
||||
|
||||
public static PublishedPropertyType GetModelPropertyType<TValue>(Expression<Func<TextPage1, TValue>> selector)
|
||||
{
|
||||
return PublishedContentModelUtility.GetModelPropertyType(GetModelContentType(), selector);
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Content
|
||||
///</summary>
|
||||
[ImplementPropertyType("content")]
|
||||
public Newtonsoft.Json.Linq.JToken Content
|
||||
{
|
||||
get { return this.GetPropertyValue<Newtonsoft.Json.Linq.JToken>("content"); }
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Folder</summary>
|
||||
[PublishedContentModel("Folder")]
|
||||
public partial class Folder : PublishedContentModel
|
||||
{
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new const string ModelTypeAlias = "Folder";
|
||||
public new const PublishedItemType ModelItemType = PublishedItemType.Media;
|
||||
#pragma warning restore 0109
|
||||
|
||||
public Folder(IPublishedContent content)
|
||||
: base(content)
|
||||
{ }
|
||||
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new static PublishedContentType GetModelContentType()
|
||||
{
|
||||
return PublishedContentType.Get(ModelItemType, ModelTypeAlias);
|
||||
}
|
||||
#pragma warning restore 0109
|
||||
|
||||
public static PublishedPropertyType GetModelPropertyType<TValue>(Expression<Func<Folder, TValue>> selector)
|
||||
{
|
||||
return PublishedContentModelUtility.GetModelPropertyType(GetModelContentType(), selector);
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Contents:
|
||||
///</summary>
|
||||
[ImplementPropertyType("contents")]
|
||||
public object Contents
|
||||
{
|
||||
get { return this.GetPropertyValue("contents"); }
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Image</summary>
|
||||
[PublishedContentModel("Image")]
|
||||
public partial class Image : PublishedContentModel
|
||||
{
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new const string ModelTypeAlias = "Image";
|
||||
public new const PublishedItemType ModelItemType = PublishedItemType.Media;
|
||||
#pragma warning restore 0109
|
||||
|
||||
public Image(IPublishedContent content)
|
||||
: base(content)
|
||||
{ }
|
||||
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new static PublishedContentType GetModelContentType()
|
||||
{
|
||||
return PublishedContentType.Get(ModelItemType, ModelTypeAlias);
|
||||
}
|
||||
#pragma warning restore 0109
|
||||
|
||||
public static PublishedPropertyType GetModelPropertyType<TValue>(Expression<Func<Image, TValue>> selector)
|
||||
{
|
||||
return PublishedContentModelUtility.GetModelPropertyType(GetModelContentType(), selector);
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Size
|
||||
///</summary>
|
||||
[ImplementPropertyType("umbracoBytes")]
|
||||
public string UmbracoBytes
|
||||
{
|
||||
get { return this.GetPropertyValue<string>("umbracoBytes"); }
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Type
|
||||
///</summary>
|
||||
[ImplementPropertyType("umbracoExtension")]
|
||||
public string UmbracoExtension
|
||||
{
|
||||
get { return this.GetPropertyValue<string>("umbracoExtension"); }
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Upload image
|
||||
///</summary>
|
||||
[ImplementPropertyType("umbracoFile")]
|
||||
public Umbraco.Web.Models.ImageCropDataSet UmbracoFile
|
||||
{
|
||||
get { return this.GetPropertyValue<Umbraco.Web.Models.ImageCropDataSet>("umbracoFile"); }
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Height
|
||||
///</summary>
|
||||
[ImplementPropertyType("umbracoHeight")]
|
||||
public string UmbracoHeight
|
||||
{
|
||||
get { return this.GetPropertyValue<string>("umbracoHeight"); }
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Width
|
||||
///</summary>
|
||||
[ImplementPropertyType("umbracoWidth")]
|
||||
public string UmbracoWidth
|
||||
{
|
||||
get { return this.GetPropertyValue<string>("umbracoWidth"); }
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>File</summary>
|
||||
[PublishedContentModel("File")]
|
||||
public partial class File : PublishedContentModel
|
||||
{
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new const string ModelTypeAlias = "File";
|
||||
public new const PublishedItemType ModelItemType = PublishedItemType.Media;
|
||||
#pragma warning restore 0109
|
||||
|
||||
public File(IPublishedContent content)
|
||||
: base(content)
|
||||
{ }
|
||||
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new static PublishedContentType GetModelContentType()
|
||||
{
|
||||
return PublishedContentType.Get(ModelItemType, ModelTypeAlias);
|
||||
}
|
||||
#pragma warning restore 0109
|
||||
|
||||
public static PublishedPropertyType GetModelPropertyType<TValue>(Expression<Func<File, TValue>> selector)
|
||||
{
|
||||
return PublishedContentModelUtility.GetModelPropertyType(GetModelContentType(), selector);
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Size
|
||||
///</summary>
|
||||
[ImplementPropertyType("umbracoBytes")]
|
||||
public string UmbracoBytes
|
||||
{
|
||||
get { return this.GetPropertyValue<string>("umbracoBytes"); }
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Type
|
||||
///</summary>
|
||||
[ImplementPropertyType("umbracoExtension")]
|
||||
public string UmbracoExtension
|
||||
{
|
||||
get { return this.GetPropertyValue<string>("umbracoExtension"); }
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Upload file
|
||||
///</summary>
|
||||
[ImplementPropertyType("umbracoFile")]
|
||||
public object UmbracoFile
|
||||
{
|
||||
get { return this.GetPropertyValue("umbracoFile"); }
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Member</summary>
|
||||
[PublishedContentModel("Member")]
|
||||
public partial class Member : PublishedContentModel
|
||||
{
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new const string ModelTypeAlias = "Member";
|
||||
public new const PublishedItemType ModelItemType = PublishedItemType.Member;
|
||||
#pragma warning restore 0109
|
||||
|
||||
public Member(IPublishedContent content)
|
||||
: base(content)
|
||||
{ }
|
||||
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new static PublishedContentType GetModelContentType()
|
||||
{
|
||||
return PublishedContentType.Get(ModelItemType, ModelTypeAlias);
|
||||
}
|
||||
#pragma warning restore 0109
|
||||
|
||||
public static PublishedPropertyType GetModelPropertyType<TValue>(Expression<Func<Member, TValue>> selector)
|
||||
{
|
||||
return PublishedContentModelUtility.GetModelPropertyType(GetModelContentType(), selector);
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Is Approved
|
||||
///</summary>
|
||||
[ImplementPropertyType("umbracoMemberApproved")]
|
||||
public bool UmbracoMemberApproved
|
||||
{
|
||||
get { return this.GetPropertyValue<bool>("umbracoMemberApproved"); }
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Comments
|
||||
///</summary>
|
||||
[ImplementPropertyType("umbracoMemberComments")]
|
||||
public string UmbracoMemberComments
|
||||
{
|
||||
get { return this.GetPropertyValue<string>("umbracoMemberComments"); }
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Failed Password Attempts
|
||||
///</summary>
|
||||
[ImplementPropertyType("umbracoMemberFailedPasswordAttempts")]
|
||||
public string UmbracoMemberFailedPasswordAttempts
|
||||
{
|
||||
get { return this.GetPropertyValue<string>("umbracoMemberFailedPasswordAttempts"); }
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Last Lockout Date
|
||||
///</summary>
|
||||
[ImplementPropertyType("umbracoMemberLastLockoutDate")]
|
||||
public string UmbracoMemberLastLockoutDate
|
||||
{
|
||||
get { return this.GetPropertyValue<string>("umbracoMemberLastLockoutDate"); }
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Last Login Date
|
||||
///</summary>
|
||||
[ImplementPropertyType("umbracoMemberLastLogin")]
|
||||
public string UmbracoMemberLastLogin
|
||||
{
|
||||
get { return this.GetPropertyValue<string>("umbracoMemberLastLogin"); }
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Last Password Change Date
|
||||
///</summary>
|
||||
[ImplementPropertyType("umbracoMemberLastPasswordChangeDate")]
|
||||
public string UmbracoMemberLastPasswordChangeDate
|
||||
{
|
||||
get { return this.GetPropertyValue<string>("umbracoMemberLastPasswordChangeDate"); }
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Is Locked Out
|
||||
///</summary>
|
||||
[ImplementPropertyType("umbracoMemberLockedOut")]
|
||||
public bool UmbracoMemberLockedOut
|
||||
{
|
||||
get { return this.GetPropertyValue<bool>("umbracoMemberLockedOut"); }
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Password Answer
|
||||
///</summary>
|
||||
[ImplementPropertyType("umbracoMemberPasswordRetrievalAnswer")]
|
||||
public string UmbracoMemberPasswordRetrievalAnswer
|
||||
{
|
||||
get { return this.GetPropertyValue<string>("umbracoMemberPasswordRetrievalAnswer"); }
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Password Question
|
||||
///</summary>
|
||||
[ImplementPropertyType("umbracoMemberPasswordRetrievalQuestion")]
|
||||
public string UmbracoMemberPasswordRetrievalQuestion
|
||||
{
|
||||
get { return this.GetPropertyValue<string>("umbracoMemberPasswordRetrievalQuestion"); }
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
// EOF
|
||||
@@ -0,0 +1,548 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
//
|
||||
// Umbraco.ModelsBuilder v3.0.4.0
|
||||
//
|
||||
// Changes to this file will be lost if the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq.Expressions;
|
||||
using System.Web;
|
||||
using Umbraco.Core.Models;
|
||||
using Umbraco.Core.Models.PublishedContent;
|
||||
using Umbraco.Web;
|
||||
using Umbraco.ModelsBuilder;
|
||||
using Umbraco.ModelsBuilder.Umbraco;
|
||||
|
||||
[assembly: PureLiveAssembly]
|
||||
[assembly:ModelsBuilderAssembly(PureLive = true, SourceHash = "508a57e7748cbe2")]
|
||||
[assembly:System.Reflection.AssemblyVersion("0.0.0.2")]
|
||||
|
||||
namespace Umbraco.Web.PublishedContentModels
|
||||
{
|
||||
/// <summary>Blog Post</summary>
|
||||
[PublishedContentModel("BlogPost")]
|
||||
public partial class BlogPost : PublishedContentModel
|
||||
{
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new const string ModelTypeAlias = "BlogPost";
|
||||
public new const PublishedItemType ModelItemType = PublishedItemType.Content;
|
||||
#pragma warning restore 0109
|
||||
|
||||
public BlogPost(IPublishedContent content)
|
||||
: base(content)
|
||||
{ }
|
||||
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new static PublishedContentType GetModelContentType()
|
||||
{
|
||||
return PublishedContentType.Get(ModelItemType, ModelTypeAlias);
|
||||
}
|
||||
#pragma warning restore 0109
|
||||
|
||||
public static PublishedPropertyType GetModelPropertyType<TValue>(Expression<Func<BlogPost, TValue>> selector)
|
||||
{
|
||||
return PublishedContentModelUtility.GetModelPropertyType(GetModelContentType(), selector);
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Content
|
||||
///</summary>
|
||||
[ImplementPropertyType("content")]
|
||||
public Newtonsoft.Json.Linq.JToken Content
|
||||
{
|
||||
get { return this.GetPropertyValue<Newtonsoft.Json.Linq.JToken>("content"); }
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Introduction
|
||||
///</summary>
|
||||
[ImplementPropertyType("introduction")]
|
||||
public string Introduction
|
||||
{
|
||||
get { return this.GetPropertyValue<string>("introduction"); }
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Blog Post Repository</summary>
|
||||
[PublishedContentModel("BlogPostRepository")]
|
||||
public partial class BlogPostRepository : PublishedContentModel
|
||||
{
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new const string ModelTypeAlias = "BlogPostRepository";
|
||||
public new const PublishedItemType ModelItemType = PublishedItemType.Content;
|
||||
#pragma warning restore 0109
|
||||
|
||||
public BlogPostRepository(IPublishedContent content)
|
||||
: base(content)
|
||||
{ }
|
||||
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new static PublishedContentType GetModelContentType()
|
||||
{
|
||||
return PublishedContentType.Get(ModelItemType, ModelTypeAlias);
|
||||
}
|
||||
#pragma warning restore 0109
|
||||
|
||||
public static PublishedPropertyType GetModelPropertyType<TValue>(Expression<Func<BlogPostRepository, TValue>> selector)
|
||||
{
|
||||
return PublishedContentModelUtility.GetModelPropertyType(GetModelContentType(), selector);
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Hide in bottom navigation?
|
||||
///</summary>
|
||||
[ImplementPropertyType("umbracoNaviHide")]
|
||||
public bool UmbracoNaviHide
|
||||
{
|
||||
get { return this.GetPropertyValue<bool>("umbracoNaviHide"); }
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Home</summary>
|
||||
[PublishedContentModel("Home")]
|
||||
public partial class Home : PublishedContentModel
|
||||
{
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new const string ModelTypeAlias = "Home";
|
||||
public new const PublishedItemType ModelItemType = PublishedItemType.Content;
|
||||
#pragma warning restore 0109
|
||||
|
||||
public Home(IPublishedContent content)
|
||||
: base(content)
|
||||
{ }
|
||||
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new static PublishedContentType GetModelContentType()
|
||||
{
|
||||
return PublishedContentType.Get(ModelItemType, ModelTypeAlias);
|
||||
}
|
||||
#pragma warning restore 0109
|
||||
|
||||
public static PublishedPropertyType GetModelPropertyType<TValue>(Expression<Func<Home, TValue>> selector)
|
||||
{
|
||||
return PublishedContentModelUtility.GetModelPropertyType(GetModelContentType(), selector);
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Content
|
||||
///</summary>
|
||||
[ImplementPropertyType("content")]
|
||||
public Newtonsoft.Json.Linq.JToken Content
|
||||
{
|
||||
get { return this.GetPropertyValue<Newtonsoft.Json.Linq.JToken>("content"); }
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Site Description
|
||||
///</summary>
|
||||
[ImplementPropertyType("siteDescription")]
|
||||
public string SiteDescription
|
||||
{
|
||||
get { return this.GetPropertyValue<string>("siteDescription"); }
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Site Logo
|
||||
///</summary>
|
||||
[ImplementPropertyType("siteLogo")]
|
||||
public object SiteLogo
|
||||
{
|
||||
get { return this.GetPropertyValue("siteLogo"); }
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Site Title
|
||||
///</summary>
|
||||
[ImplementPropertyType("siteTitle")]
|
||||
public string SiteTitle
|
||||
{
|
||||
get { return this.GetPropertyValue<string>("siteTitle"); }
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Landing Page</summary>
|
||||
[PublishedContentModel("LandingPage")]
|
||||
public partial class LandingPage : PublishedContentModel
|
||||
{
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new const string ModelTypeAlias = "LandingPage";
|
||||
public new const PublishedItemType ModelItemType = PublishedItemType.Content;
|
||||
#pragma warning restore 0109
|
||||
|
||||
public LandingPage(IPublishedContent content)
|
||||
: base(content)
|
||||
{ }
|
||||
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new static PublishedContentType GetModelContentType()
|
||||
{
|
||||
return PublishedContentType.Get(ModelItemType, ModelTypeAlias);
|
||||
}
|
||||
#pragma warning restore 0109
|
||||
|
||||
public static PublishedPropertyType GetModelPropertyType<TValue>(Expression<Func<LandingPage, TValue>> selector)
|
||||
{
|
||||
return PublishedContentModelUtility.GetModelPropertyType(GetModelContentType(), selector);
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Content
|
||||
///</summary>
|
||||
[ImplementPropertyType("content")]
|
||||
public Newtonsoft.Json.Linq.JToken Content
|
||||
{
|
||||
get { return this.GetPropertyValue<Newtonsoft.Json.Linq.JToken>("content"); }
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Hide in bottom navigation?
|
||||
///</summary>
|
||||
[ImplementPropertyType("umbracoNaviHide")]
|
||||
public bool UmbracoNaviHide
|
||||
{
|
||||
get { return this.GetPropertyValue<bool>("umbracoNaviHide"); }
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Text Page</summary>
|
||||
[PublishedContentModel("TextPage")]
|
||||
public partial class TextPage : PublishedContentModel
|
||||
{
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new const string ModelTypeAlias = "TextPage";
|
||||
public new const PublishedItemType ModelItemType = PublishedItemType.Content;
|
||||
#pragma warning restore 0109
|
||||
|
||||
public TextPage(IPublishedContent content)
|
||||
: base(content)
|
||||
{ }
|
||||
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new static PublishedContentType GetModelContentType()
|
||||
{
|
||||
return PublishedContentType.Get(ModelItemType, ModelTypeAlias);
|
||||
}
|
||||
#pragma warning restore 0109
|
||||
|
||||
public static PublishedPropertyType GetModelPropertyType<TValue>(Expression<Func<TextPage, TValue>> selector)
|
||||
{
|
||||
return PublishedContentModelUtility.GetModelPropertyType(GetModelContentType(), selector);
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Content
|
||||
///</summary>
|
||||
[ImplementPropertyType("content")]
|
||||
public Newtonsoft.Json.Linq.JToken Content
|
||||
{
|
||||
get { return this.GetPropertyValue<Newtonsoft.Json.Linq.JToken>("content"); }
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Leaf Input</summary>
|
||||
[PublishedContentModel("TextPage1")]
|
||||
public partial class TextPage1 : PublishedContentModel
|
||||
{
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new const string ModelTypeAlias = "TextPage1";
|
||||
public new const PublishedItemType ModelItemType = PublishedItemType.Content;
|
||||
#pragma warning restore 0109
|
||||
|
||||
public TextPage1(IPublishedContent content)
|
||||
: base(content)
|
||||
{ }
|
||||
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new static PublishedContentType GetModelContentType()
|
||||
{
|
||||
return PublishedContentType.Get(ModelItemType, ModelTypeAlias);
|
||||
}
|
||||
#pragma warning restore 0109
|
||||
|
||||
public static PublishedPropertyType GetModelPropertyType<TValue>(Expression<Func<TextPage1, TValue>> selector)
|
||||
{
|
||||
return PublishedContentModelUtility.GetModelPropertyType(GetModelContentType(), selector);
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Content
|
||||
///</summary>
|
||||
[ImplementPropertyType("content")]
|
||||
public Newtonsoft.Json.Linq.JToken Content
|
||||
{
|
||||
get { return this.GetPropertyValue<Newtonsoft.Json.Linq.JToken>("content"); }
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Folder</summary>
|
||||
[PublishedContentModel("Folder")]
|
||||
public partial class Folder : PublishedContentModel
|
||||
{
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new const string ModelTypeAlias = "Folder";
|
||||
public new const PublishedItemType ModelItemType = PublishedItemType.Media;
|
||||
#pragma warning restore 0109
|
||||
|
||||
public Folder(IPublishedContent content)
|
||||
: base(content)
|
||||
{ }
|
||||
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new static PublishedContentType GetModelContentType()
|
||||
{
|
||||
return PublishedContentType.Get(ModelItemType, ModelTypeAlias);
|
||||
}
|
||||
#pragma warning restore 0109
|
||||
|
||||
public static PublishedPropertyType GetModelPropertyType<TValue>(Expression<Func<Folder, TValue>> selector)
|
||||
{
|
||||
return PublishedContentModelUtility.GetModelPropertyType(GetModelContentType(), selector);
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Contents:
|
||||
///</summary>
|
||||
[ImplementPropertyType("contents")]
|
||||
public object Contents
|
||||
{
|
||||
get { return this.GetPropertyValue("contents"); }
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Image</summary>
|
||||
[PublishedContentModel("Image")]
|
||||
public partial class Image : PublishedContentModel
|
||||
{
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new const string ModelTypeAlias = "Image";
|
||||
public new const PublishedItemType ModelItemType = PublishedItemType.Media;
|
||||
#pragma warning restore 0109
|
||||
|
||||
public Image(IPublishedContent content)
|
||||
: base(content)
|
||||
{ }
|
||||
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new static PublishedContentType GetModelContentType()
|
||||
{
|
||||
return PublishedContentType.Get(ModelItemType, ModelTypeAlias);
|
||||
}
|
||||
#pragma warning restore 0109
|
||||
|
||||
public static PublishedPropertyType GetModelPropertyType<TValue>(Expression<Func<Image, TValue>> selector)
|
||||
{
|
||||
return PublishedContentModelUtility.GetModelPropertyType(GetModelContentType(), selector);
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Size
|
||||
///</summary>
|
||||
[ImplementPropertyType("umbracoBytes")]
|
||||
public string UmbracoBytes
|
||||
{
|
||||
get { return this.GetPropertyValue<string>("umbracoBytes"); }
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Type
|
||||
///</summary>
|
||||
[ImplementPropertyType("umbracoExtension")]
|
||||
public string UmbracoExtension
|
||||
{
|
||||
get { return this.GetPropertyValue<string>("umbracoExtension"); }
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Upload image
|
||||
///</summary>
|
||||
[ImplementPropertyType("umbracoFile")]
|
||||
public Umbraco.Web.Models.ImageCropDataSet UmbracoFile
|
||||
{
|
||||
get { return this.GetPropertyValue<Umbraco.Web.Models.ImageCropDataSet>("umbracoFile"); }
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Height
|
||||
///</summary>
|
||||
[ImplementPropertyType("umbracoHeight")]
|
||||
public string UmbracoHeight
|
||||
{
|
||||
get { return this.GetPropertyValue<string>("umbracoHeight"); }
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Width
|
||||
///</summary>
|
||||
[ImplementPropertyType("umbracoWidth")]
|
||||
public string UmbracoWidth
|
||||
{
|
||||
get { return this.GetPropertyValue<string>("umbracoWidth"); }
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>File</summary>
|
||||
[PublishedContentModel("File")]
|
||||
public partial class File : PublishedContentModel
|
||||
{
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new const string ModelTypeAlias = "File";
|
||||
public new const PublishedItemType ModelItemType = PublishedItemType.Media;
|
||||
#pragma warning restore 0109
|
||||
|
||||
public File(IPublishedContent content)
|
||||
: base(content)
|
||||
{ }
|
||||
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new static PublishedContentType GetModelContentType()
|
||||
{
|
||||
return PublishedContentType.Get(ModelItemType, ModelTypeAlias);
|
||||
}
|
||||
#pragma warning restore 0109
|
||||
|
||||
public static PublishedPropertyType GetModelPropertyType<TValue>(Expression<Func<File, TValue>> selector)
|
||||
{
|
||||
return PublishedContentModelUtility.GetModelPropertyType(GetModelContentType(), selector);
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Size
|
||||
///</summary>
|
||||
[ImplementPropertyType("umbracoBytes")]
|
||||
public string UmbracoBytes
|
||||
{
|
||||
get { return this.GetPropertyValue<string>("umbracoBytes"); }
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Type
|
||||
///</summary>
|
||||
[ImplementPropertyType("umbracoExtension")]
|
||||
public string UmbracoExtension
|
||||
{
|
||||
get { return this.GetPropertyValue<string>("umbracoExtension"); }
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Upload file
|
||||
///</summary>
|
||||
[ImplementPropertyType("umbracoFile")]
|
||||
public object UmbracoFile
|
||||
{
|
||||
get { return this.GetPropertyValue("umbracoFile"); }
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Member</summary>
|
||||
[PublishedContentModel("Member")]
|
||||
public partial class Member : PublishedContentModel
|
||||
{
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new const string ModelTypeAlias = "Member";
|
||||
public new const PublishedItemType ModelItemType = PublishedItemType.Member;
|
||||
#pragma warning restore 0109
|
||||
|
||||
public Member(IPublishedContent content)
|
||||
: base(content)
|
||||
{ }
|
||||
|
||||
#pragma warning disable 0109 // new is redundant
|
||||
public new static PublishedContentType GetModelContentType()
|
||||
{
|
||||
return PublishedContentType.Get(ModelItemType, ModelTypeAlias);
|
||||
}
|
||||
#pragma warning restore 0109
|
||||
|
||||
public static PublishedPropertyType GetModelPropertyType<TValue>(Expression<Func<Member, TValue>> selector)
|
||||
{
|
||||
return PublishedContentModelUtility.GetModelPropertyType(GetModelContentType(), selector);
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Is Approved
|
||||
///</summary>
|
||||
[ImplementPropertyType("umbracoMemberApproved")]
|
||||
public bool UmbracoMemberApproved
|
||||
{
|
||||
get { return this.GetPropertyValue<bool>("umbracoMemberApproved"); }
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Comments
|
||||
///</summary>
|
||||
[ImplementPropertyType("umbracoMemberComments")]
|
||||
public string UmbracoMemberComments
|
||||
{
|
||||
get { return this.GetPropertyValue<string>("umbracoMemberComments"); }
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Failed Password Attempts
|
||||
///</summary>
|
||||
[ImplementPropertyType("umbracoMemberFailedPasswordAttempts")]
|
||||
public string UmbracoMemberFailedPasswordAttempts
|
||||
{
|
||||
get { return this.GetPropertyValue<string>("umbracoMemberFailedPasswordAttempts"); }
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Last Lockout Date
|
||||
///</summary>
|
||||
[ImplementPropertyType("umbracoMemberLastLockoutDate")]
|
||||
public string UmbracoMemberLastLockoutDate
|
||||
{
|
||||
get { return this.GetPropertyValue<string>("umbracoMemberLastLockoutDate"); }
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Last Login Date
|
||||
///</summary>
|
||||
[ImplementPropertyType("umbracoMemberLastLogin")]
|
||||
public string UmbracoMemberLastLogin
|
||||
{
|
||||
get { return this.GetPropertyValue<string>("umbracoMemberLastLogin"); }
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Last Password Change Date
|
||||
///</summary>
|
||||
[ImplementPropertyType("umbracoMemberLastPasswordChangeDate")]
|
||||
public string UmbracoMemberLastPasswordChangeDate
|
||||
{
|
||||
get { return this.GetPropertyValue<string>("umbracoMemberLastPasswordChangeDate"); }
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Is Locked Out
|
||||
///</summary>
|
||||
[ImplementPropertyType("umbracoMemberLockedOut")]
|
||||
public bool UmbracoMemberLockedOut
|
||||
{
|
||||
get { return this.GetPropertyValue<bool>("umbracoMemberLockedOut"); }
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Password Answer
|
||||
///</summary>
|
||||
[ImplementPropertyType("umbracoMemberPasswordRetrievalAnswer")]
|
||||
public string UmbracoMemberPasswordRetrievalAnswer
|
||||
{
|
||||
get { return this.GetPropertyValue<string>("umbracoMemberPasswordRetrievalAnswer"); }
|
||||
}
|
||||
|
||||
///<summary>
|
||||
/// Password Question
|
||||
///</summary>
|
||||
[ImplementPropertyType("umbracoMemberPasswordRetrievalQuestion")]
|
||||
public string UmbracoMemberPasswordRetrievalQuestion
|
||||
{
|
||||
get { return this.GetPropertyValue<string>("umbracoMemberPasswordRetrievalQuestion"); }
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
508a57e7748cbe2
|
||||
@@ -0,0 +1,81 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="1" version="1.0.0" url="http://umbraco.com" name="Fanoe Starter Kit" folder="10045f3a-5fb0-4b3f-9778-bdc18426c9b6" packagepath="" repositoryGuid="65194810-1f85-11dd-bd0b-0800200c9a66" iconUrl="" umbVersion="7.5.4" packageGuid="55e028e3-0c5b-4188-9722-7d14b4bd12c0" hasUpdate="False" enableSkins="False" skinRepoGuid="00000000-0000-0000-0000-000000000000">
|
||||
<license url="http://opensource.org/licenses/MIT">MIT License</license>
|
||||
<author url="http://umbraco.com">Umbraco HQ</author>
|
||||
<readme><![CDATA[]]></readme>
|
||||
<actions>
|
||||
</actions>
|
||||
<datatypes>1046,1047,1048</datatypes>
|
||||
<content nodeId="1059" loadChildNodes="False">
|
||||
</content>
|
||||
<templates>1049,1050,1051,1052,1053</templates>
|
||||
<stylesheets>1314083917,-337057864,-1670962977,473795041</stylesheets>
|
||||
<documenttypes>1054,1055,1056,1057,1058</documenttypes>
|
||||
<macros>
|
||||
</macros>
|
||||
<files>
|
||||
<file>/App_Plugins/Grid/Config/FanoeConfig.txt</file>
|
||||
<file>/App_Plugins/Grid/Editors/Render/embed_videowrapper.cshtml</file>
|
||||
<file>/App_Plugins/Grid/Editors/Render/media_round.cshtml</file>
|
||||
<file>/App_Plugins/Grid/Editors/Render/media_text_right.cshtml</file>
|
||||
<file>/App_Plugins/Grid/Editors/Render/media_wide.cshtml</file>
|
||||
<file>/App_Plugins/Grid/Editors/Render/quote_with_description.cshtml</file>
|
||||
<file>/App_Plugins/Grid/Editors/Views/media_with_description.html</file>
|
||||
<file>/App_Plugins/Grid/Editors/Views/quote_with_description.html</file>
|
||||
<file>/Views/Partials/Grid/Bootstrap2.cshtml</file>
|
||||
<file>/Views/Partials/Grid/Bootstrap3.cshtml</file>
|
||||
<file>/Views/Partials/Grid/Fanoe.cshtml</file>
|
||||
<file>/Views/Partials/Grid/Editors/Base.cshtml</file>
|
||||
<file>/Views/Partials/Grid/Editors/Embed.cshtml</file>
|
||||
<file>/Views/Partials/Grid/Editors/Macro.cshtml</file>
|
||||
<file>/Views/Partials/Grid/Editors/Media.cshtml</file>
|
||||
<file>/Views/Partials/Grid/Editors/Rte.cshtml</file>
|
||||
<file>/Views/Partials/Grid/Editors/Textstring.cshtml</file>
|
||||
<file>/Views/Home.cshtml</file>
|
||||
<file>/Views/Master.cshtml</file>
|
||||
<file>/Views/TextPage.cshtml</file>
|
||||
<file>/scripts/fanoe.js</file>
|
||||
<file>/js/bootstrap.min.js</file>
|
||||
<file>/js/jquery.min.js</file>
|
||||
<file>/css/bootstrap.min.css</file>
|
||||
<file>/css/fanoe.css</file>
|
||||
<file>/css/rte.css</file>
|
||||
<file>/css/style.css</file>
|
||||
<file>/Views/Partials/MainNavigation.cshtml</file>
|
||||
<file>/Views/Partials/BottomNavigation.cshtml</file>
|
||||
<file>/bin/Fanoe.dll</file>
|
||||
<file>/media/1012/fanoe-denmark.jpg</file>
|
||||
<file>/media/1022/9686845888_e2d216ce81_b_dark_small.jpg</file>
|
||||
<file>/media/1013/9027510123_92a91b5cf4_b_dark.jpg</file>
|
||||
<file>/media/1014/9017002308_81dfd2c1d5_b_dark.jpg</file>
|
||||
<file>/media/1015/14257753719_2c02b94030_h.jpg</file>
|
||||
<file>/media/1016/14435759945_a2c58e9ed6_h.jpg</file>
|
||||
<file>/media/1017/14359779226_df7329d607_h_dark.jpg</file>
|
||||
<file>/media/1018/10818851674_e375a8751e_b.jpg</file>
|
||||
<file>/media/1024/14448232381_8f994d2adc_h_dark.jpg</file>
|
||||
<file>/media/1038/screen-shot-2014-12-01-at-121327.png</file>
|
||||
<file>/media/1027/14434411872_8e663d6de0_h.jpg</file>
|
||||
<file>/media/1028/14435732345_c9f5b48dfa_h_dark.jpg</file>
|
||||
<file>/media/1031/9026528992_d38fbc2e28_o_dark.jpg</file>
|
||||
<file>/media/1032/9039247947_e15a9d8850_b.jpg</file>
|
||||
<file>/media/1033/whole-earth-catalog.jpg</file>
|
||||
<file>/media/1037/9015601712_72e44263e4_b.jpg</file>
|
||||
<file>/media/1036/1912289_753997844648209_7099291360101379579_o.jpg</file>
|
||||
<file>/media/1044/14441035391_7ee1d0d166_h_darken.jpg</file>
|
||||
<file>/media/1023/form-bg.png</file>
|
||||
<file>/media/1046/14386124825_d43f359900_h_cropped.jpg</file>
|
||||
<file>/media/1047/9027509991_ff12bd87e4_b_small_cropped.jpg</file>
|
||||
<file>/media/1048/sharingiscaring_cropped.jpg</file>
|
||||
<file>/media/1049/9027510123_92a91b5cf4_b_dark.jpg</file>
|
||||
<file>/media/1042/logo.jpg</file>
|
||||
<file>/Views/BlogPost.cshtml</file>
|
||||
</files>
|
||||
<languages>
|
||||
</languages>
|
||||
<dictionaryitems>
|
||||
</dictionaryitems>
|
||||
<loadcontrol>
|
||||
</loadcontrol>
|
||||
</package>
|
||||
</packages>
|
||||
Reference in New Issue
Block a user