CREATE TABLE [umbracoUserType] (
[id] int NOT NULL IDENTITY (5,1)
, [userTypeAlias] nvarchar(50) NULL
, [userTypeName] nvarchar(255) NOT NULL
, [userTypeDefaultPermissions] nvarchar(50) NULL
);
GO
CREATE TABLE [umbracoUser2NodePermission] (
[userId] int NOT NULL
, [nodeId] int NOT NULL
, [permission] nchar(1) NOT NULL
);
GO
CREATE TABLE [umbracoUser2NodeNotify] (
[userId] int NOT NULL
, [nodeId] int NOT NULL
, [action] nchar(1) NOT NULL
);
GO
CREATE TABLE [umbracoUser] (
[id] int NOT NULL IDENTITY (1,1)
, [userDisabled] bit NOT NULL DEFAULT (0)
, [userNoConsole] bit NOT NULL DEFAULT (0)
, [userType] int NOT NULL
, [startStructureID] int NOT NULL
, [startMediaID] int NULL
, [userName] nvarchar(255) NOT NULL
, [userLogin] nvarchar(125) NOT NULL
, [userPassword] nvarchar(125) NOT NULL
, [userEmail] nvarchar(255) NOT NULL
, [userDefaultPermissions] nvarchar(50) NULL
, [userLanguage] nvarchar(10) NULL
, [defaultToLiveEditing] bit NOT NULL DEFAULT (0)
);
GO
CREATE TABLE [umbracoUser2app] (
[user] int NOT NULL
, [app] nvarchar(50) NOT NULL
);
GO
CREATE TABLE [umbracoRelationType] (
[id] int NOT NULL IDENTITY (2,1)
, [dual] bit NOT NULL
, [parentObjectType] uniqueidentifier NOT NULL
, [childObjectType] uniqueidentifier NOT NULL
, [name] nvarchar(255) NOT NULL
, [alias] nvarchar(100) NULL
);
GO
CREATE TABLE [umbracoRelation] (
[id] int NOT NULL IDENTITY (1,1)
, [parentId] int NOT NULL
, [childId] int NOT NULL
, [relType] int NOT NULL
, [datetime] datetime NOT NULL DEFAULT (getdate())
, [comment] nvarchar(1000) NOT NULL
);
GO
CREATE TABLE [umbracoNode] (
[id] int NOT NULL IDENTITY (1073,1)
, [trashed] bit NOT NULL DEFAULT (0)
, [parentID] int NOT NULL
, [nodeUser] int NULL
, [level] int NOT NULL
, [path] nvarchar(150) NOT NULL
, [sortOrder] int NOT NULL
, [uniqueID] uniqueidentifier NULL
, [text] nvarchar(255) NULL
, [nodeObjectType] uniqueidentifier NULL
, [createDate] datetime NOT NULL DEFAULT (getdate())
);
GO
CREATE TABLE [umbracoLog] (
[id] int NOT NULL IDENTITY (103,1)
, [userId] int NOT NULL
, [NodeId] int NOT NULL
, [Datestamp] datetime NOT NULL DEFAULT (getdate())
, [logHeader] nvarchar(50) NOT NULL
, [logComment] nvarchar(4000) NULL
);
GO
CREATE TABLE [umbracoLanguage] (
[id] int NOT NULL IDENTITY (2,1)
, [languageISOCode] nvarchar(10) NULL
, [languageCultureName] nvarchar(100) NULL
);
GO
CREATE TABLE [umbracoDomains] (
[id] int NOT NULL IDENTITY (1,1)
, [domainDefaultLanguage] int NULL
, [domainRootStructureID] int NULL
, [domainName] nvarchar(255) NOT NULL
);
GO
CREATE TABLE [umbracoAppTree] (
[treeSilent] bit NOT NULL DEFAULT (0)
, [treeInitialize] bit NOT NULL DEFAULT (1)
, [treeSortOrder] tinyint NOT NULL
, [appAlias] nvarchar(50) NOT NULL
, [treeAlias] nvarchar(150) NOT NULL
, [treeTitle] nvarchar(255) NOT NULL
, [treeIconClosed] nvarchar(255) NOT NULL
, [treeIconOpen] nvarchar(255) NOT NULL
, [treeHandlerAssembly] nvarchar(255) NOT NULL
, [treeHandlerType] nvarchar(255) NOT NULL
, [action] nvarchar(255) NULL
);
GO
CREATE TABLE [umbracoApp] (
[sortOrder] tinyint NOT NULL DEFAULT (0)
, [appAlias] nvarchar(50) NOT NULL
, [appIcon] nvarchar(255) NOT NULL
, [appName] nvarchar(255) NOT NULL
, [appInitWithTreeAlias] nvarchar(255) NULL
);
GO
CREATE TABLE [Comment] (
[id] int NOT NULL IDENTITY (1,1)
, [mainid] int NOT NULL
, [nodeid] int NOT NULL
, [name] nvarchar(250) NULL
, [email] nvarchar(250) NULL
, [website] nvarchar(250) NULL
, [comment] ntext NULL
, [spam] bit NULL
, [ham] bit NULL
, [created] datetime NULL
);
GO
CREATE TABLE [cmsTemplate] (
[pk] int NOT NULL IDENTITY (11,1)
, [nodeId] int NOT NULL
, [master] int NULL
, [alias] nvarchar(100) NULL
, [design] ntext NOT NULL
);
GO
CREATE TABLE [cmsTaskType] (
[id] int NOT NULL IDENTITY (2,1)
, [alias] nvarchar(255) NOT NULL
);
GO
CREATE TABLE [cmsTask] (
[closed] bit NOT NULL DEFAULT ((0))
, [id] int NOT NULL IDENTITY (1,1)
, [taskTypeId] int NOT NULL
, [nodeId] int NOT NULL
, [parentUserId] int NOT NULL
, [userId] int NOT NULL
, [DateTime] datetime NOT NULL DEFAULT (getdate())
, [Comment] nvarchar(500) NULL
);
GO
CREATE TABLE [cmsTags] (
[id] int NOT NULL IDENTITY (2,1)
, [tag] nvarchar(200) NULL
, [parentId] int NULL
, [group] nvarchar(100) NULL
);
GO
CREATE TABLE [cmsTagRelationship] (
[nodeId] int NOT NULL
, [tagId] int NOT NULL
);
GO
CREATE TABLE [cmsTab] (
[id] int NOT NULL IDENTITY (18,1)
, [contenttypeNodeId] int NOT NULL
, [text] nvarchar(255) NOT NULL
, [sortorder] int NOT NULL
);
GO
CREATE TABLE [cmsStylesheetProperty] (
[nodeId] int NOT NULL
, [stylesheetPropertyEditor] bit NULL
, [stylesheetPropertyAlias] nvarchar(50) NULL
, [stylesheetPropertyValue] nvarchar(400) NULL
);
GO
CREATE TABLE [cmsStylesheet] (
[nodeId] int NOT NULL
, [filename] nvarchar(100) NOT NULL
, [content] ntext NULL
);
GO
CREATE TABLE [cmsPropertyType] (
[id] int NOT NULL IDENTITY (47,1)
, [dataTypeId] int NOT NULL
, [contentTypeId] int NOT NULL
, [tabId] int NULL
, [Alias] nvarchar(255) NOT NULL
, [Name] nvarchar(255) NULL
, [helpText] nvarchar(1000) NULL
, [sortOrder] int NOT NULL DEFAULT (0)
, [mandatory] bit NOT NULL DEFAULT (0)
, [validationRegExp] nvarchar(255) NULL
, [Description] nvarchar(2000) NULL
);
GO
CREATE TABLE [cmsPropertyData] (
[id] int NOT NULL IDENTITY (69,1)
, [contentNodeId] int NOT NULL
, [versionId] uniqueidentifier NULL
, [propertytypeid] int NOT NULL
, [dataInt] int NULL
, [dataDate] datetime NULL
, [dataNvarchar] nvarchar(500) NULL
, [dataNtext] ntext NULL
);
GO
CREATE TABLE [cmsPreviewXml] (
[nodeId] int NOT NULL
, [versionId] uniqueidentifier NOT NULL
, [timestamp] datetime NOT NULL
, [xml] ntext NOT NULL
);
GO
CREATE TABLE [cmsMemberType] (
[pk] int NOT NULL IDENTITY (1,1)
, [NodeId] int NOT NULL
, [propertytypeId] int NOT NULL
, [memberCanEdit] bit NOT NULL DEFAULT (0)
, [viewOnProfile] bit NOT NULL DEFAULT (0)
);
GO
CREATE TABLE [cmsMember2MemberGroup] (
[Member] int NOT NULL
, [MemberGroup] int NOT NULL
);
GO
CREATE TABLE [cmsMember] (
[nodeId] int NOT NULL
, [Email] nvarchar(1000) NOT NULL DEFAULT ('')
, [LoginName] nvarchar(1000) NOT NULL DEFAULT ('')
, [Password] nvarchar(1000) NOT NULL DEFAULT ('')
);
GO
CREATE TABLE [cmsMacroPropertyType] (
[id] int NOT NULL IDENTITY (26,1)
, [macroPropertyTypeAlias] nvarchar(50) NULL
, [macroPropertyTypeRenderAssembly] nvarchar(255) NULL
, [macroPropertyTypeRenderType] nvarchar(255) NULL
, [macroPropertyTypeBaseType] nvarchar(255) NULL
);
GO
CREATE TABLE [cmsMacroProperty] (
[id] int NOT NULL IDENTITY (8,1)
, [macroPropertyHidden] bit NOT NULL DEFAULT (0)
, [macroPropertyType] int NOT NULL
, [macro] int NOT NULL
, [macroPropertySortOrder] tinyint NOT NULL DEFAULT (0)
, [macroPropertyAlias] nvarchar(50) NOT NULL
, [macroPropertyName] nvarchar(255) NOT NULL
);
GO
CREATE TABLE [cmsMacro] (
[id] int NOT NULL IDENTITY (22,1)
, [macroUseInEditor] bit NOT NULL DEFAULT (0)
, [macroRefreshRate] int NOT NULL DEFAULT (0)
, [macroAlias] nvarchar(255) NOT NULL
, [macroName] nvarchar(255) NULL
, [macroScriptType] nvarchar(255) NULL
, [macroScriptAssembly] nvarchar(255) NULL
, [macroXSLT] nvarchar(255) NULL
, [macroCacheByPage] bit NOT NULL DEFAULT (1)
, [macroCachePersonalized] bit NOT NULL DEFAULT (0)
, [macroDontRender] bit NOT NULL DEFAULT (0)
, [macroPython] nvarchar(255) NULL
);
GO
CREATE TABLE [cmsLanguageText] (
[pk] int NOT NULL IDENTITY (1,1)
, [languageId] int NOT NULL
, [UniqueId] uniqueidentifier NOT NULL
, [value] nvarchar(1000) NOT NULL
);
GO
CREATE TABLE [cmsDocumentType] (
[contentTypeNodeId] int NOT NULL
, [templateNodeId] int NOT NULL
, [IsDefault] bit NOT NULL DEFAULT (0)
);
GO
CREATE TABLE [cmsDocument] (
[nodeId] int NOT NULL
, [published] bit NOT NULL
, [documentUser] int NOT NULL
, [versionId] uniqueidentifier NOT NULL
, [text] nvarchar(255) NOT NULL
, [releaseDate] datetime NULL
, [expireDate] datetime NULL
, [updateDate] datetime NOT NULL DEFAULT (getdate())
, [templateId] int NULL
, [alias] nvarchar(255) NULL
, [newest] bit NOT NULL DEFAULT (0)
);
GO
CREATE TABLE [cmsDictionary] (
[pk] int NOT NULL IDENTITY (1,1)
, [id] uniqueidentifier NOT NULL
, [parent] uniqueidentifier NOT NULL
, [key] nvarchar(1000) NOT NULL
);
GO
CREATE TABLE [cmsDataTypePreValues] (
[id] int NOT NULL IDENTITY (5,1)
, [datatypeNodeId] int NOT NULL
, [value] nvarchar(2500) NULL
, [sortorder] int NOT NULL
, [alias] nvarchar(50) NULL
);
GO
CREATE TABLE [cmsDataType] (
[pk] int NOT NULL IDENTITY (40,1)
, [nodeId] int NOT NULL
, [controlId] uniqueidentifier NOT NULL
, [dbType] nvarchar(50) NOT NULL
);
GO
CREATE TABLE [cmsContentXml] (
[nodeId] int NOT NULL
, [xml] ntext NOT NULL
);
GO
CREATE TABLE [cmsContentVersion] (
[id] int NOT NULL IDENTITY (28,1)
, [ContentId] int NOT NULL
, [VersionId] uniqueidentifier NOT NULL
, [VersionDate] datetime NOT NULL DEFAULT (getdate())
);
GO
CREATE TABLE [cmsContentTypeAllowedContentType] (
[Id] int NOT NULL
, [AllowedId] int NOT NULL
);
GO
CREATE TABLE [cmsContentType] (
[pk] int NOT NULL IDENTITY (542,1)
, [nodeId] int NOT NULL
, [alias] nvarchar(255) NULL
, [icon] nvarchar(255) NULL
, [thumbnail] nvarchar(255) NOT NULL DEFAULT ('folder.png')
, [description] nvarchar(1500) NULL
, [masterContentType] int NULL DEFAULT (0)
);
GO
CREATE TABLE [cmsContent] (
[pk] int NOT NULL IDENTITY (13,1)
, [nodeId] int NOT NULL
, [contentType] int NOT NULL
);
GO
SET IDENTITY_INSERT [umbracoUserType] ON;
GO
INSERT INTO [umbracoUserType] ([id],[userTypeAlias],[userTypeName],[userTypeDefaultPermissions]) VALUES (1,N'admin',N'Administrators',N'CADMOSKTPIURZ:5F');
GO
INSERT INTO [umbracoUserType] ([id],[userTypeAlias],[userTypeName],[userTypeDefaultPermissions]) VALUES (2,N'writer',N'Writer',N'CAH:F');
GO
INSERT INTO [umbracoUserType] ([id],[userTypeAlias],[userTypeName],[userTypeDefaultPermissions]) VALUES (3,N'editor',N'Editors',N'CADMOSKTPUZ:5F');
GO
INSERT INTO [umbracoUserType] ([id],[userTypeAlias],[userTypeName],[userTypeDefaultPermissions]) VALUES (4,N'translator',N'Translator',N'AF');
GO
SET IDENTITY_INSERT [umbracoUserType] OFF;
GO
SET IDENTITY_INSERT [umbracoUser] ON;
GO
INSERT INTO [umbracoUser] ([id],[userDisabled],[userNoConsole],[userType],[startStructureID],[startMediaID],[userName],[userLogin],[userPassword],[userEmail],[userDefaultPermissions],[userLanguage],[defaultToLiveEditing]) VALUES (0,0,0,1,-1,-1,N'admin',N'admin',N'd9xnUXsUah9gycu7D0TpRYcx19c=',N'admin@domain.com',NULL,N'en',0);
GO
SET IDENTITY_INSERT [umbracoUser] OFF;
GO
INSERT INTO [umbracoUser2app] ([user],[app]) VALUES (0,N'content');
GO
INSERT INTO [umbracoUser2app] ([user],[app]) VALUES (0,N'developer');
GO
INSERT INTO [umbracoUser2app] ([user],[app]) VALUES (0,N'media');
GO
INSERT INTO [umbracoUser2app] ([user],[app]) VALUES (0,N'member');
GO
INSERT INTO [umbracoUser2app] ([user],[app]) VALUES (0,N'settings');
GO
INSERT INTO [umbracoUser2app] ([user],[app]) VALUES (0,N'users');
GO
SET IDENTITY_INSERT [umbracoRelationType] ON;
GO
INSERT INTO [umbracoRelationType] ([id],[dual],[parentObjectType],[childObjectType],[name],[alias]) VALUES (1,1,'c66ba18e-eaf3-4cff-8a22-41b16d66a972','c66ba18e-eaf3-4cff-8a22-41b16d66a972',N'Relate Document On Copy',N'relateDocumentOnCopy');
GO
SET IDENTITY_INSERT [umbracoRelationType] OFF;
GO
SET IDENTITY_INSERT [umbracoRelation] OFF;
GO
SET IDENTITY_INSERT [umbracoNode] ON;
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (-92,0,-1,0,11,N'-1,-92',37,'f0bc4bfb-b499-40d6-ba86-058885a5178c',N'Label','30a2a501-1978-4ddb-a57b-f7efed43ba3c',{ts '2004-09-30 14:01:49.920'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (-90,0,-1,0,11,N'-1,-90',35,'84c6b441-31df-4ffe-b67e-67d5bc3ae65a',N'Upload','30a2a501-1978-4ddb-a57b-f7efed43ba3c',{ts '2004-09-30 14:01:49.920'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (-89,0,-1,0,11,N'-1,-89',34,'c6bac0dd-4ab9-45b1-8e30-e4b619ee5da3',N'Textarea','30a2a501-1978-4ddb-a57b-f7efed43ba3c',{ts '2004-09-30 14:01:49.920'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (-88,0,-1,0,11,N'-1,-88',33,'0cc0eba1-9960-42c9-bf9b-60e150b429ae',N'Textstring','30a2a501-1978-4ddb-a57b-f7efed43ba3c',{ts '2004-09-30 14:01:49.920'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (-87,0,-1,0,11,N'-1,-87',32,'ca90c950-0aff-4e72-b976-a30b1ac57dad',N'Richtext editor','30a2a501-1978-4ddb-a57b-f7efed43ba3c',{ts '2004-09-30 14:01:49.920'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (-51,0,-1,0,11,N'-1,-51',4,'2e6d3631-066e-44b8-aec4-96f09099b2b5',N'Numeric','30a2a501-1978-4ddb-a57b-f7efed43ba3c',{ts '2004-09-30 14:01:49.920'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (-49,0,-1,0,11,N'-1,-49',2,'92897bc6-a5f3-4ffe-ae27-f2e7e33dda49',N'True/false','30a2a501-1978-4ddb-a57b-f7efed43ba3c',{ts '2004-09-30 14:01:49.920'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (-43,0,-1,0,1,N'-1,-43',2,'fbaf13a8-4036-41f2-93a3-974f678c312a',N'Checkbox list','30a2a501-1978-4ddb-a57b-f7efed43ba3c',{ts '2004-10-15 14:11:04.367'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (-42,0,-1,0,1,N'-1,-42',2,'0b6a45e7-44ba-430d-9da5-4e46060b9e03',N'Dropdown','30a2a501-1978-4ddb-a57b-f7efed43ba3c',{ts '2004-10-15 14:10:59.000'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (-41,0,-1,0,1,N'-1,-41',2,'5046194e-4237-453c-a547-15db3a07c4e1',N'Date Picker','30a2a501-1978-4ddb-a57b-f7efed43ba3c',{ts '2004-10-15 14:10:54.303'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (-40,0,-1,0,1,N'-1,-40',2,'bb5f57c9-ce2b-4bb9-b697-4caca783a805',N'Radiobox','30a2a501-1978-4ddb-a57b-f7efed43ba3c',{ts '2004-10-15 14:10:49.253'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (-39,0,-1,0,1,N'-1,-39',2,'f38f0ac7-1d27-439c-9f3f-089cd8825a53',N'Dropdown multiple','30a2a501-1978-4ddb-a57b-f7efed43ba3c',{ts '2004-10-15 14:10:44.480'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (-38,0,-1,0,1,N'-1,-38',2,'fd9f1447-6c61-4a7c-9595-5aa39147d318',N'Folder Browser','30a2a501-1978-4ddb-a57b-f7efed43ba3c',{ts '2004-10-15 14:10:37.020'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (-37,0,-1,0,1,N'-1,-37',2,'0225af17-b302-49cb-9176-b9f35cab9c17',N'Approved Color','30a2a501-1978-4ddb-a57b-f7efed43ba3c',{ts '2004-10-15 14:10:30.580'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (-36,0,-1,0,1,N'-1,-36',2,'e4d66c0f-b935-4200-81f0-025f7256b89a',N'Date Picker with time','30a2a501-1978-4ddb-a57b-f7efed43ba3c',{ts '2004-10-15 14:10:23.007'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (-1,0,-1,0,0,N'-1',0,'916724a5-173d-4619-b97e-b9de133dd6f5',N'SYSTEM DATA: umbraco master root','ea7d8624-4cfe-4578-a871-24aa946bf34d',{ts '2004-09-30 14:01:49.920'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1031,0,-1,1,1,N'-1,1031',2,'f38bd2d7-65d0-48e6-95dc-87ce06ec2d3d',N'Folder','4ea4382b-2f5a-4c2b-9587-ae9b3cf3602e',{ts '2004-12-01 00:13:40.743'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1032,0,-1,1,1,N'-1,1032',2,'cc07b313-0843-4aa8-bbda-871c8da728c8',N'Image','4ea4382b-2f5a-4c2b-9587-ae9b3cf3602e',{ts '2004-12-01 00:13:43.737'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1033,0,-1,1,1,N'-1,1033',2,'4c52d8ab-54e6-40cd-999c-7a5f24903e4d',N'File','4ea4382b-2f5a-4c2b-9587-ae9b3cf3602e',{ts '2004-12-01 00:13:46.210'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1034,0,-1,0,1,N'-1,1034',2,'a6857c73-d6e9-480c-b6e6-f15f6ad11125',N'Content Picker','30a2a501-1978-4ddb-a57b-f7efed43ba3c',{ts '2006-01-03 13:07:29.203'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1035,0,-1,0,1,N'-1,1035',2,'93929b9a-93a2-4e2a-b239-d99334440a59',N'Media Picker','30a2a501-1978-4ddb-a57b-f7efed43ba3c',{ts '2006-01-03 13:07:36.143'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1036,0,-1,0,1,N'-1,1036',2,'2b24165f-9782-4aa3-b459-1de4a4d21f60',N'Member Picker','30a2a501-1978-4ddb-a57b-f7efed43ba3c',{ts '2006-01-03 13:07:40.260'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1038,0,-1,0,1,N'-1,1038',2,'1251c96c-185c-4e9b-93f4-b48205573cbd',N'Simple Editor','30a2a501-1978-4ddb-a57b-f7efed43ba3c',{ts '2006-01-03 13:07:55.250'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1039,0,-1,0,1,N'-1,1039',2,'06f349a9-c949-4b6a-8660-59c10451af42',N'Ultimate Picker','30a2a501-1978-4ddb-a57b-f7efed43ba3c',{ts '2006-01-03 13:07:55.250'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1040,0,-1,0,1,N'-1,1040',2,'21e798da-e06e-4eda-a511-ed257f78d4fa',N'Related Links','30a2a501-1978-4ddb-a57b-f7efed43ba3c',{ts '2006-01-03 13:07:55.250'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1041,0,-1,0,1,N'-1,1041',2,'b6b73142-b9c1-4bf8-a16d-e1c23320b549',N'Tags','30a2a501-1978-4ddb-a57b-f7efed43ba3c',{ts '2006-01-03 13:07:55.250'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (-20,0,-1,0,0,N'-1,-20',0,'0f582a79-1e41-4cf0-bfa0-76340651891a',N'Recycle Bin','01bb7ff2-24dc-4c0c-95a2-c24ef72bbac8',{ts '2013-01-10 11:40:00.407'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (-21,0,-1,0,0,N'-1,-21',0,'bf7c7cbc-952f-4518-97a2-69e9c7b33842',N'Recycle Bin','cf3d8e34-1c1c-41e9-ae56-878b57b32113',{ts '2013-01-10 11:40:00.420'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1042,0,-1,0,1,N'-1,1042',0,'50d985c6-41fe-4bf2-90c1-e421907f54d2',N'Author Picker','30a2a501-1978-4ddb-a57b-f7efed43ba3c',{ts '2013-01-10 11:40:41.627'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1043,0,-1,0,1,N'-1,1043',0,'0b345dbd-238d-4acd-962f-d3442a55c94f',N'Blog Datefolder','6fbde604-4178-42ce-a10b-8a2600a2f07d',{ts '2013-01-10 11:40:45.320'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1044,0,-1,0,1,N'-1,1044',0,'2c4d6a45-6ac2-4a93-94a2-60832dbcf1dd',N'Blog post','6fbde604-4178-42ce-a10b-8a2600a2f07d',{ts '2013-01-10 11:40:45.710'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1045,0,-1,0,1,N'-1,1045',0,'0de93dae-b7c5-4002-ad7b-50ac5fc55cf1',N'CommentRss','6fbde604-4178-42ce-a10b-8a2600a2f07d',{ts '2013-01-10 11:40:46.023'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1046,0,-1,0,1,N'-1,1046',0,'47c1198c-70ef-4a39-9415-af5b66d9744c',N'Business Homepage','6fbde604-4178-42ce-a10b-8a2600a2f07d',{ts '2013-01-10 11:40:46.347'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1047,0,-1,0,1,N'-1,1047',0,'85fb17ea-ea68-4dbb-817c-8b53e0a57968',N'Homepage','6fbde604-4178-42ce-a10b-8a2600a2f07d',{ts '2013-01-10 11:40:46.667'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1048,0,-1,0,1,N'-1,1048',0,'9dc74e25-20e4-4052-8559-c424f1bbf35f',N'News','6fbde604-4178-42ce-a10b-8a2600a2f07d',{ts '2013-01-10 11:40:46.993'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1049,0,-1,0,1,N'-1,1049',0,'9eaca9c4-2633-4051-986a-f9dafa5ed6e8',N'News Article','6fbde604-4178-42ce-a10b-8a2600a2f07d',{ts '2013-01-10 11:40:47.317'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1050,0,-1,0,1,N'-1,1050',0,'57efce3d-c800-43b3-b015-16f8cc9b8e39',N'Rss','6fbde604-4178-42ce-a10b-8a2600a2f07d',{ts '2013-01-10 11:40:47.663'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1051,0,-1,0,1,N'-1,1051',0,'28814a9c-3c69-4fce-99a9-c20af4b0233b',N'Starterkit Master','6fbde604-4178-42ce-a10b-8a2600a2f07d',{ts '2013-01-10 11:40:48.007'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1052,0,-1,0,1,N'-1,1052',0,'3dac53d0-5d1d-4697-bf9d-0f75d520a3c6',N'Textpage','6fbde604-4178-42ce-a10b-8a2600a2f07d',{ts '2013-01-10 11:40:48.357'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1053,0,-1,0,1,N'-1,1053',0,'f23acb57-e99a-4e87-a5a7-661b7d5cd996',N'Blog','a2cb7800-f571-4787-9638-bc48539a0efb',{ts '2013-01-10 11:40:48.980'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1054,0,-1,0,1,N'-1,1054',0,'f17a7159-7e27-4498-a62e-ee6707f32109',N'Blog Post','a2cb7800-f571-4787-9638-bc48539a0efb',{ts '2013-01-10 11:40:49.620'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1055,0,-1,0,1,N'-1,1055',0,'bda218b6-0db6-4eca-9555-907d1ac505f2',N'DateFolder','a2cb7800-f571-4787-9638-bc48539a0efb',{ts '2013-01-10 11:40:49.980'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1056,0,-1,0,1,N'-1,1056',0,'783bb98a-302c-4603-95bd-394a3e2478f6',N'Homepage','a2cb7800-f571-4787-9638-bc48539a0efb',{ts '2013-01-10 11:40:50.193'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1057,0,-1,0,1,N'-1,1057',0,'ab2195b9-f806-481b-bc6c-06fc07b5c66d',N'News Area','a2cb7800-f571-4787-9638-bc48539a0efb',{ts '2013-01-10 11:40:50.390'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1058,0,-1,0,1,N'-1,1058',0,'22e3905f-2f7c-4f03-b4b1-c8ac8d691ec6',N'News Article','a2cb7800-f571-4787-9638-bc48539a0efb',{ts '2013-01-10 11:40:50.527'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1059,0,-1,0,1,N'-1,1059',0,'7f4e28d6-b062-44cb-8225-0916aed1b4ea',N'Textpage','a2cb7800-f571-4787-9638-bc48539a0efb',{ts '2013-01-10 11:40:50.707'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1060,0,-1,0,1,N'-1,1060',0,'347ebb18-0da5-4944-83a9-30340d80b560',N'Starterkit','9f68da4f-a3a8-44c2-8226-dcbd125e4840',{ts '2013-01-10 11:40:50.983'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1061,0,-1,0,1,N'-1,1061',0,'5c02e465-a4d1-459f-b858-2ac8be534ab0',N'Business Site','c66ba18e-eaf3-4cff-8a22-41b16d66a972',{ts '2010-09-07 13:19:39.000'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1062,0,1061,0,2,N'-1,1061,1062',0,'e4b3ebcf-74a2-4b58-8d4f-31dc571966b7',N'Company News','c66ba18e-eaf3-4cff-8a22-41b16d66a972',{ts '2010-09-07 13:22:05.000'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1063,0,1062,0,3,N'-1,1061,1062,1063',0,'dff143b2-ad5e-4647-b287-19ccaeea8572',N'Another record year','c66ba18e-eaf3-4cff-8a22-41b16d66a972',{ts '2010-09-07 13:22:21.000'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1064,0,1062,0,3,N'-1,1061,1062,1064',1,'40ec98a0-e867-4ba7-8fe5-7b4610fa3d70',N'Finance department news','c66ba18e-eaf3-4cff-8a22-41b16d66a972',{ts '2010-09-07 13:22:35.000'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1065,0,1062,0,3,N'-1,1061,1062,1065',2,'587bc2fd-1665-4103-a839-abc3bd4a4a62',N'Stocks are up','c66ba18e-eaf3-4cff-8a22-41b16d66a972',{ts '2010-09-07 13:22:53.000'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1066,0,1061,0,2,N'-1,1061,1066',1,'560712d7-9ec9-49c5-bd52-452d42142ba8',N'Company Blog','c66ba18e-eaf3-4cff-8a22-41b16d66a972',{ts '2010-09-07 13:26:10.000'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1067,0,1066,0,3,N'-1,1061,1066,1067',0,'a1d4e8a2-9e57-453e-82fa-20f9dfddf960',N'Company blog post','c66ba18e-eaf3-4cff-8a22-41b16d66a972',{ts '2010-09-07 13:31:05.000'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1068,0,1061,0,2,N'-1,1061,1068',2,'9b969602-93f0-4c40-ba97-fb2976ead373',N'About','c66ba18e-eaf3-4cff-8a22-41b16d66a972',{ts '2010-09-07 13:53:39.000'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1069,0,1068,0,3,N'-1,1061,1068,1069',0,'90f3a715-e699-4d8a-98e6-5e2453d421f5',N'Installing runway modules','c66ba18e-eaf3-4cff-8a22-41b16d66a972',{ts '2010-09-07 13:19:40.000'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1070,0,1068,0,3,N'-1,1061,1068,1070',1,'c7686ef3-dd44-42c4-9415-0ed5b1879bad',N'Go further','c66ba18e-eaf3-4cff-8a22-41b16d66a972',{ts '2010-09-07 13:19:40.000'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1071,0,1068,0,3,N'-1,1061,1068,1071',2,'32f8e215-a8d8-49a8-8357-311ea44f55f0',N'Getting started','c66ba18e-eaf3-4cff-8a22-41b16d66a972',{ts '2010-09-07 13:19:40.000'});
GO
INSERT INTO [umbracoNode] ([id],[trashed],[parentID],[nodeUser],[level],[path],[sortOrder],[uniqueID],[text],[nodeObjectType],[createDate]) VALUES (1072,0,1061,0,2,N'-1,1061,1072',3,'82186e37-c006-4244-b5c2-fb88cb3fa763',N'Contact us','c66ba18e-eaf3-4cff-8a22-41b16d66a972',{ts '2010-09-07 13:20:06.000'});
GO
SET IDENTITY_INSERT [umbracoNode] OFF;
GO
SET IDENTITY_INSERT [umbracoLog] ON;
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (1,0,-1,{ts '2013-01-10 11:40:00.477'},N'System',N'Loading content from database...');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (2,0,-1,{ts '2013-01-10 11:40:00.483'},N'Debug',N'Republishing starting');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (3,0,-1,{ts '2013-01-10 11:40:00.487'},N'Debug',N'Xml Pages loaded');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (4,0,-1,{ts '2013-01-10 11:40:00.490'},N'Debug',N'Done republishing Xml Index');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (5,0,-1,{ts '2013-01-10 11:40:00.557'},N'Debug',N'Xml saved in 00:00:00.0073186');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (6,0,-1,{ts '2013-01-10 11:40:00.570'},N'Debug',N'Xml saved in 00:00:00.0024964');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (7,0,-1,{ts '2013-01-10 11:40:11.080'},N'Login',N'');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (8,0,-1,{ts '2013-01-10 11:40:28.683'},N'System',N'Log scrubbed. Removed all items older than 2012-11-11 11:40:28');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (9,0,-1,{ts '2013-01-10 11:40:32.057'},N'System',N'Loading content from disk cache...');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (10,0,-1,{ts '2013-01-10 11:40:32.390'},N'Custom',N'[UmbracoExamine] Adding examine event handlers for index providers: 3');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (11,0,-1,{ts '2013-01-10 11:40:32.957'},N'System',N'Log scrubbed. Removed all items older than 2012-11-11 11:40:32');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (12,0,-1,{ts '2013-01-10 11:40:35.457'},N'System',N'Loading content from disk cache...');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (13,0,-1,{ts '2013-01-10 11:40:35.853'},N'Custom',N'[UmbracoExamine] Adding examine event handlers for index providers: 3');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (14,0,1061,{ts '2013-01-10 11:40:51.037'},N'New',N'');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (15,0,1062,{ts '2013-01-10 11:40:51.227'},N'New',N'');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (16,0,1063,{ts '2013-01-10 11:40:51.283'},N'New',N'');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (17,0,1064,{ts '2013-01-10 11:40:51.360'},N'New',N'');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (18,0,1065,{ts '2013-01-10 11:40:51.430'},N'New',N'');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (19,0,1066,{ts '2013-01-10 11:40:51.650'},N'New',N'');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (20,0,1067,{ts '2013-01-10 11:40:52.027'},N'New',N'');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (21,0,1068,{ts '2013-01-10 11:40:52.253'},N'New',N'');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (22,0,1068,{ts '2013-01-10 11:40:52.407'},N'Error',N'Couldn''t import property ''asdasd'' as the property type doesn''t exist on this document type');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (23,0,1069,{ts '2013-01-10 11:40:52.520'},N'New',N'');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (24,0,1069,{ts '2013-01-10 11:40:52.667'},N'Error',N'Couldn''t import property ''asdasd'' as the property type doesn''t exist on this document type');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (25,0,1070,{ts '2013-01-10 11:40:52.797'},N'New',N'');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (26,0,1070,{ts '2013-01-10 11:40:52.963'},N'Error',N'Couldn''t import property ''asdasd'' as the property type doesn''t exist on this document type');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (27,0,1071,{ts '2013-01-10 11:40:53.167'},N'New',N'');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (28,0,1071,{ts '2013-01-10 11:40:53.287'},N'Error',N'Couldn''t import property ''asdasd'' as the property type doesn''t exist on this document type');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (29,0,1072,{ts '2013-01-10 11:40:53.427'},N'New',N'');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (30,0,1072,{ts '2013-01-10 11:40:53.553'},N'Error',N'Couldn''t import property ''asdasd'' as the property type doesn''t exist on this document type');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (31,0,-1,{ts '2013-01-10 11:40:53.633'},N'Debug',N'<Action runat="install" alias="addXsltExtension" assembly="umbraco.editorControls" type="umbraco.editorControls.tags.library" extensionAlias="tagsLib" />');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (32,0,-1,{ts '2013-01-10 11:40:53.647'},N'Debug',N'<Action runat="install" alias="addXsltExtension" assembly="Runway.Blog" type="Runway.Blog.BlogLibrary" extensionAlias="BlogLibrary" />');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (33,0,-1,{ts '2013-01-10 11:40:53.650'},N'Debug',N'<Action runat="install" alias="blog_addRestExtension"><ext assembly="Runway.Blog" type="Runway.Blog.Library.Base" alias="umbBlog"><permission method="CreateComment" returnXml="false" allowAll="true" /><permission method="GetGravatarImage" returnXml="false" allowAll="true" /></ext></Action>');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (34,0,-1,{ts '2013-01-10 11:40:53.653'},N'Debug',N'<Action runat="install" undo="true" alias="AddUrlRewriteRule"><add name="rsstagrewrite" virtualUrl="^~/blog/rss/tags/(.*).aspx" rewriteUrlParameter="ExcludeFromClientQueryString" destinationUrl="~/blog/rss.aspx?tag=$1" ignoreCase="true" /></Action>');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (35,0,-1,{ts '2013-01-10 11:40:53.657'},N'Debug',N'<Action runat="install" alias="blog_executeNonQuery"><Sqlserver>< NOT NULL CONSTRAINT [PK_Comment] PRIMARY KEY ,
[mainid] [int] NOT NULL,
[nodeid] [int] NOT NULL,
[name] [nvarchar](250) NULL,
[email] [nvarchar](250) NULL,
[website] [nvarchar](250) NULL,
[comment] [ntext] NULL,
[spam] [bit] NULL,
[ham] [bit] NULL,
[created] [datetime] NULL
);
]]></Sqlserver><VistaDB><![CDATA[
CREATE TABLE [Comment]
(
[id] INT NOT NULL PRIMARY KEY,
[mainid] INT NOT NULL,
[nodeid] INT NOT NULL,
[name] NVARCHAR (250),
[email] NVARCHAR (250),
[website] NVARCHAR (250),
[comment] NTEXT,
[spam] BIT,
[ham] BIT,
[created] DATETIME
);
ALTER TABLE [Comment]
ALTER COLUMN [id] INT NOT NULL IDENTITY (1, 1);
]]></VistaDB><MySQL><![CDATA[
CREATE TABLE Comment (
id INTEGER UNSIGNED DEFAULT NULL AUTO_INCREMENT,
mainid INTEGER UNSIGNED NOT NULL,
nodeid INTEGER UNSIGNED NOT NULL,
name VARCHAR(250),
email VARCHAR(250),
website VARCHAR(250),
comment TEXT,
spam BOOLEAN,
ham BOOLEAN,
created DATETIME,
PRIMARY KEY (id)
);
]]></MySQL></Action>');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (36,0,-1,{ts '2013-01-10 11:40:53.670'},N'Debug',N'<Action runat="install" alias="publishRootDocument" documentName="Business Site" />');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (37,0,-1,{ts '2013-01-10 11:40:53.670'},N'Debug',N'<Action runat="install" alias="addDashboardSection" dashboardAlias="Comments"><section><areas><area>content</area></areas><tab caption="Comments"><control>/usercontrols/blog/CommentModeration.ascx</control></tab></section></Action>');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (38,0,1061,{ts '2013-01-10 11:40:53.767'},N'Publish',N'');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (39,0,1062,{ts '2013-01-10 11:40:53.813'},N'Publish',N'');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (40,0,1063,{ts '2013-01-10 11:40:53.867'},N'Publish',N'');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (41,0,1064,{ts '2013-01-10 11:40:53.927'},N'Publish',N'');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (42,0,1065,{ts '2013-01-10 11:40:53.983'},N'Publish',N'');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (43,0,1066,{ts '2013-01-10 11:40:54.060'},N'Publish',N'');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (44,0,1067,{ts '2013-01-10 11:40:54.113'},N'Debug',N'Start Before Publish Event for Blog Post 1067');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (45,0,1067,{ts '2013-01-10 11:40:54.137'},N'Debug',N'Unable to determine top of Blog for BlogPost 1067 while attempting to move to new Post Date');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (46,0,-1,{ts '2013-01-10 11:40:54.183'},N'System',N'Loading content from database...');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (47,0,-1,{ts '2013-01-10 11:40:54.183'},N'Debug',N'Republishing starting');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (48,0,-1,{ts '2013-01-10 11:40:54.203'},N'Debug',N'Xml Pages loaded');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (49,0,-1,{ts '2013-01-10 11:40:54.203'},N'Debug',N'Done republishing Xml Index');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (50,0,-1,{ts '2013-01-10 11:40:54.270'},N'Debug',N'Xml saved in 00:00:00.0106684');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (51,0,-1,{ts '2013-01-10 11:40:54.337'},N'Debug',N'Xml saved in 00:00:00.0171005');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (52,0,1067,{ts '2013-01-10 11:40:54.347'},N'Publish',N'');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (53,0,1068,{ts '2013-01-10 11:40:54.473'},N'Publish',N'');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (54,0,1069,{ts '2013-01-10 11:40:54.530'},N'Publish',N'');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (55,0,1070,{ts '2013-01-10 11:40:54.593'},N'Publish',N'');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (56,0,1071,{ts '2013-01-10 11:40:54.660'},N'Publish',N'');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (57,0,1072,{ts '2013-01-10 11:40:54.703'},N'Publish',N'');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (58,0,-1,{ts '2013-01-10 11:40:54.847'},N'Debug',N'Republishing starting');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (59,0,-1,{ts '2013-01-10 11:40:54.857'},N'Debug',N'Done republishing Xml Index');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (60,0,-1,{ts '2013-01-10 11:40:54.860'},N'System',N'Loading content from database...');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (61,0,-1,{ts '2013-01-10 11:40:54.887'},N'Debug',N'Xml Pages loaded');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (62,0,-1,{ts '2013-01-10 11:40:54.913'},N'Debug',N'Xml saved in 00:00:00.0045672');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (63,0,-1,{ts '2013-01-10 11:40:54.927'},N'Debug',N'Xml saved in 00:00:00.0034576');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (64,0,-1,{ts '2013-01-10 11:42:15.793'},N'System',N'Loading content from database...');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (65,0,-1,{ts '2013-01-10 11:42:15.803'},N'Debug',N'Republishing starting');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (66,0,-1,{ts '2013-01-10 11:42:15.843'},N'Debug',N'Xml Pages loaded');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (67,0,-1,{ts '2013-01-10 11:42:15.867'},N'Debug',N'Done republishing Xml Index');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (68,0,-1,{ts '2013-01-10 11:42:16.043'},N'Debug',N'Xml saved in 00:00:00.0248290');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (69,0,-1,{ts '2013-01-10 11:42:16.203'},N'Debug',N'Xml saved in 00:00:00.0246613');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (70,0,-1,{ts '2013-01-10 11:42:17.270'},N'System',N'Log scrubbed. Removed all items older than 2012-11-11 11:42:17');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (71,0,-1,{ts '2013-01-10 11:42:19.230'},N'System',N'Loading content from disk cache...');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (72,0,-1,{ts '2013-01-10 11:42:19.443'},N'Custom',N'[UmbracoExamine] Adding examine event handlers for index providers: 3');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (73,0,-1,{ts '2013-01-10 11:42:21.663'},N'System',N'Log scrubbed. Removed all items older than 2012-11-11 11:42:21');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (74,0,-1,{ts '2013-01-10 11:42:23.580'},N'System',N'Loading content from disk cache...');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (75,0,-1,{ts '2013-01-10 11:42:23.660'},N'Custom',N'[UmbracoExamine] Adding examine event handlers for index providers: 3');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (76,0,1067,{ts '2013-01-10 11:42:37.113'},N'Open',N'');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (77,0,1067,{ts '2013-01-10 11:42:46.810'},N'Save',N'');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (78,0,1067,{ts '2013-01-10 11:42:51.020'},N'Save',N'');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (79,0,1067,{ts '2013-01-10 11:42:51.267'},N'Debug',N'Start Before Publish Event for Blog Post 1067');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (80,0,-1,{ts '2013-01-10 11:42:51.537'},N'System',N'Loading content from database...');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (81,0,-1,{ts '2013-01-10 11:42:51.550'},N'Debug',N'Republishing starting');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (82,0,-1,{ts '2013-01-10 11:42:51.613'},N'Debug',N'Xml Pages loaded');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (83,0,-1,{ts '2013-01-10 11:42:51.617'},N'Debug',N'Done republishing Xml Index');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (84,0,1067,{ts '2013-01-10 11:42:51.620'},N'Publish',N'');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (85,0,-1,{ts '2013-01-10 11:42:51.763'},N'Debug',N'Xml saved in 00:00:00.0156219');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (86,0,-1,{ts '2013-01-10 11:42:51.870'},N'Debug',N'Xml saved in 00:00:00.0329115');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (87,0,1061,{ts '2013-01-10 11:42:52.160'},N'Error',N'Error adding to SiteMapProvider in loadNodes(): System.InvalidOperationException: Multiple nodes with the same URL ''/'' were found. XmlSiteMapProvider requires that sitemap nodes have unique URLs.
at System.Web.StaticSiteMapProvider.AddNode(SiteMapNode node, SiteMapNode parentNode)
at umbraco.presentation.nodeFactory.UmbracoSiteMapProvider.loadNodes(String parentId, SiteMapNode parentNode)');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (88,0,-1,{ts '2013-01-10 11:42:52.440'},N'Debug',N'Xml saved in 00:00:00.0101066');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (89,0,1069,{ts '2013-01-10 11:43:11.597'},N'Open',N'');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (90,0,1069,{ts '2013-01-10 11:43:16.627'},N'Save',N'');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (91,0,1069,{ts '2013-01-10 11:43:16.967'},N'Publish',N'');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (92,0,-1,{ts '2013-01-10 11:43:17.853'},N'Debug',N'Xml saved in 00:00:00.1000836');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (93,0,1071,{ts '2013-01-10 11:43:20.283'},N'Open',N'');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (94,0,1071,{ts '2013-01-10 11:43:26.150'},N'Save',N'');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (95,0,1071,{ts '2013-01-10 11:43:29.247'},N'Save',N'');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (96,0,1071,{ts '2013-01-10 11:43:29.613'},N'Publish',N'');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (97,0,-1,{ts '2013-01-10 11:43:30.707'},N'Debug',N'Xml saved in 00:00:00.0127080');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (98,0,-1,{ts '2013-01-10 11:48:17.877'},N'System',N'Loading content from disk cache...');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (99,0,-1,{ts '2013-01-10 11:48:18.013'},N'Custom',N'[UmbracoExamine] Adding examine event handlers for index providers: 3');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (100,0,-1,{ts '2013-01-10 11:48:37.797'},N'Login',N'');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (101,0,1071,{ts '2013-01-10 11:48:45.043'},N'Open',N'');
GO
INSERT INTO [umbracoLog] ([id],[userId],[NodeId],[Datestamp],[logHeader],[logComment]) VALUES (102,0,1071,{ts '2013-01-10 11:48:56.250'},N'Save',N'');
GO
SET IDENTITY_INSERT [umbracoLog] OFF;
GO
SET IDENTITY_INSERT [umbracoLanguage] ON;
GO
INSERT INTO [umbracoLanguage] ([id],[languageISOCode],[languageCultureName]) VALUES (1,N'en-US',N'en-US');
GO
SET IDENTITY_INSERT [umbracoLanguage] OFF;
GO
SET IDENTITY_INSERT [umbracoDomains] OFF;
GO
SET IDENTITY_INSERT [Comment] OFF;
GO
SET IDENTITY_INSERT [cmsTemplate] ON;
GO
INSERT INTO [cmsTemplate] ([pk],[nodeId],[master],[alias],[design]) VALUES (1,1043,1051,N'umbBlogDatefolder',N'<%@ Master Language="C#" MasterPageFile="~/masterpages/umbMaster.master" AutoEventWireup="true" %>
Business news
The Simple Starter Kit gives you a bare-bones website that introduces you to a set of well-defined conventions for building an Umbraco website.
The Simple website is very basic in form and provided without any design or functionality - unless you add a Skin, of course. By installing the Simple Starter Kit, you''ll begin with a minimal site built on best practices. You''ll also enjoy the benefits of speaking the same "language" as the rest of the Umbraco community by using common properties and naming conventions.
Now that you know what the Simple site is, it is time to get started using Umbraco.
'); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (2,1061,'3c22a413-d136-4d21-be8b-8a0d3d6b80db',41,NULL,NULL,N'Business site',NULL); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (3,1061,'3c22a413-d136-4d21-be8b-8a0d3d6b80db',42,NULL,NULL,NULL,N'Off to a great start'); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (4,1063,'03bb0418-3581-4bcd-a5d2-0fe5b58b8244',43,NULL,NULL,NULL,N'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id enim vel metus dignissim fermentum. Donec molestie pulvinar ultricies. Donec ullamcorper facilisis mattis. Sed id condimentum dui. Vivamus ornare congue facilisis. Nulla arcu lorem, sollicitudin at tincidunt nec, congue in dolor. Morbi mattis magna non risus convallis non dignissim sapien dictum.'); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (5,1063,'03bb0418-3581-4bcd-a5d2-0fe5b58b8244',44,NULL,NULL,NULL,N'Nam consectetur risus quis diam dignissim convallis. Donec congue arcu at ligula venenatis facilisis. Donec tincidunt, augue vel venenatis suscipit, ipsum orci pretium lacus, et tempor felis nisi eu diam. Fusce vel turpis quis nisl viverra pharetra sit amet et risus. Donec interdum ullamcorper sodales. Mauris feugiat velit rhoncus sapien sagittis venenatis quis non purus. Cras ac arcu velit.
Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Etiam non tortor nec risus laoreet auctor. Mauris ipsum ligula, suscipit fermentum interdum id, facilisis eu felis. Proin ut porttitor tortor. Proin quis pulvinar urna. Nullam cursus feugiat feugiat. Praesent iaculis lacus at arcu feugiat suscipit. Proin elementum tortor vitae massa euismod tempus. Donec adipiscing nunc lacinia felis aliquam mattis. Ut ipsum nisl, ultrices nec vehicula vel, blandit vel nibh. Nam augue magna, sodales eu consectetur vestibulum, consequat in libero. Nulla facilisi. Nunc id ligula urna. Sed tempus bibendum eros, a posuere ante varius eu. Mauris quis neque nec felis laoreet eleifend. Nullam bibendum molestie bibendum. Aenean vestibulum sodales orci sed mollis.
Duis tempor scelerisque condimentum. Proin convallis placerat odio, at dictum risus tempor id. Maecenas vel erat ac enim convallis vehicula at et mi. Fusce ut faucibus odio. Vestibulum pharetra mollis sem, at viverra nunc facilisis non. Vivamus vulputate nibh et ligula dictum interdum. Aenean at libero et quam ultricies dignissim in id tellus. Curabitur tincidunt nibh ullamcorper ligula dapibus volutpat. Vestibulum neque augue, blandit vitae ornare at, facilisis at sapien. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur non mollis lacus. Ut sed pulvinar nulla.
'); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (6,1064,'5336d895-f777-4a87-9a2a-69526d4f7906',43,NULL,NULL,NULL,N'Tortor vitae massa euismod tempus. Donec adipiscing nunc lacinia felis aliquam mattis. Ut ipsum nisl, ultrices nec vehicula vel, blandit vel nibh. Nam augue magna, sodales eu consectetur vestibulum, consequat in libero. Nulla facilisi. Nunc id ligula urna.'); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (7,1064,'5336d895-f777-4a87-9a2a-69526d4f7906',44,NULL,NULL,NULL,N'Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Etiam non tortor nec risus laoreet auctor. Mauris ipsum ligula, suscipit fermentum interdum id, facilisis eu felis. Proin ut porttitor tortor. Proin quis pulvinar urna. Nullam cursus feugiat feugiat. Praesent iaculis lacus at arcu feugiat suscipit. Proin elementum tortor vitae massa euismod tempus. Donec adipiscing nunc lacinia felis aliquam mattis. Ut ipsum nisl, ultrices nec vehicula vel, blandit vel nibh. Nam augue magna, sodales eu consectetur vestibulum, consequat in libero. Nulla facilisi. Nunc id ligula urna. Sed tempus bibendum eros, a posuere ante varius eu. Mauris quis neque nec felis laoreet eleifend. Nullam bibendum molestie bibendum. Aenean vestibulum sodales orci sed mollis.
Duis tempor scelerisque condimentum. Proin convallis placerat odio, at dictum risus tempor id. Maecenas vel erat ac enim convallis vehicula at et mi. Fusce ut faucibus odio. Vestibulum pharetra mollis sem, at viverra nunc facilisis non. Vivamus vulputate nibh et ligula dictum interdum. Aenean at libero et quam ultricies dignissim in id tellus. Curabitur tincidunt nibh ullamcorper ligula dapibus volutpat. Vestibulum neque augue, blandit vitae ornare at, facilisis at sapien. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur non mollis lacus. Ut sed pulvinar nulla.
Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nunc rhoncus neque pellentesque urna sodales quis rutrum sapien consectetur. Nam consectetur semper augue sit amet fringilla. Curabitur vel magna rhoncus ipsum pharetra aliquet. Morbi et molestie justo. Fusce congue tellus aliquam leo sollicitudin nec bibendum sapien egestas. Pellentesque nec sapien enim. Phasellus justo leo, congue dapibus euismod id, luctus ut ante. Curabitur justo metus, faucibus eget placerat sit amet, fringilla eget urna. Aliquam a leo ipsum.
'); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (8,1065,'31355ff7-b966-445a-9597-d0c3a0a7d39a',43,NULL,NULL,NULL,N'Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nunc rhoncus neque pellentesque urna sodales quis rutrum sapien consectetur. Nam consectetur semper augue sit amet fringilla. Curabitur vel magna rhoncus ipsum pharetra aliquet.'); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (9,1065,'31355ff7-b966-445a-9597-d0c3a0a7d39a',44,NULL,NULL,NULL,N'Duis tempor scelerisque condimentum. Proin convallis placerat odio, at dictum risus tempor id. Maecenas vel erat ac enim convallis vehicula at et mi. Fusce ut faucibus odio. Vestibulum pharetra mollis sem, at viverra nunc facilisis non. Vivamus vulputate nibh et ligula dictum interdum. Aenean at libero et quam ultricies dignissim in id tellus. Curabitur tincidunt nibh ullamcorper ligula dapibus volutpat. Vestibulum neque augue, blandit vitae ornare at, facilisis at sapien. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur non mollis lacus. Ut sed pulvinar nulla.
Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nunc rhoncus neque pellentesque urna sodales quis rutrum sapien consectetur. Nam consectetur semper augue sit amet fringilla. Curabitur vel magna rhoncus ipsum pharetra aliquet. Morbi et molestie justo. Fusce congue tellus aliquam leo sollicitudin nec bibendum sapien egestas. Pellentesque nec sapien enim. Phasellus justo leo, congue dapibus euismod id, luctus ut ante. Curabitur justo metus, faucibus eget placerat sit amet, fringilla eget urna. Aliquam a leo ipsum.
In nec tristique odio. Proin fringilla lobortis neque sit amet dapibus. Maecenas mollis tempor lacus, ac commodo sem condimentum ac. Nulla facilisi. Duis eleifend placerat laoreet. In fringilla accumsan leo a laoreet. Sed tincidunt nisl a risus blandit pellentesque. Mauris in ante ac sapien semper sagittis. Etiam luctus posuere pulvinar. Sed eros sem, sollicitudin a laoreet non, ultrices nec nulla. Morbi tempus, nunc ac malesuada tempus, ipsum neque sodales ipsum, et lacinia libero tellus a risus. Integer sit amet purus nibh, in aliquam nisi. Curabitur non imperdiet libero. Quisque magna massa, vestibulum vitae laoreet sit amet, luctus eu elit. Nam eros mi, consectetur a eleifend sed, tincidunt id odio.
'); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (10,1066,'ef6b71ed-5aeb-4777-b74d-ad9703dc01ab',28,NULL,NULL,NULL,NULL); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (11,1066,'ef6b71ed-5aeb-4777-b74d-ad9703dc01ab',29,NULL,NULL,NULL,N' '); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (12,1066,'ef6b71ed-5aeb-4777-b74d-ad9703dc01ab',30,NULL,NULL,NULL,N'Hi there! , welcome to your new Umbraco powered blog. Before you start posting away, there''s a handful of things we thought you should know:
There is a comprehensive and detailed usage and configuration manual, which covers everything about setting up this blog and about blogging in general
This package is open source and developement is community driven. So if you have an idea for improvement or wish to be a part of developing this package you should join the conversaion.
You can change the appearance of this blog by changing the skin in the umbraco back-end. The skins are powered by the umbraco community. If you wish to do your own skin or just want to tweak the current one, you can find guidance in the skinners guide
Chainging the skin is just the first step, everything is extendable and hackable. This blog uses open standards and follows umbraco best practices, so everything can be tweaked. Want to know how to get started? Ask the friendly community at our.umbraco.org
Umbraco modules encapsulate specific bits of advanced functionality that are easily added to your website.
Once installed, Umbraco modules are open source and easy to customize if you want to modify the behavior for your specific needs.
Because Umbraco modules are provided under the MIT license you are free to use and modify them any way you want, with no strings attached.
To add Umbraco modules to your website, go to the Settings section, expand the Templates item, select the Starterkit Master template, then click the Customize Skin button on the toolbar.
Umbraco modules are available for various kinds of navigation, a sitemap, social media feeds, and a contact form. The list of available Umbraco modules is growing rapidly and is automatically updated from a central source, always fresh and current.
Get more information about the umbraco way.
'); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (24,1069,'6a883056-4255-4906-8c01-632ee8611f31',46,0,NULL,NULL,NULL); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (25,1070,'0d61300e-b50f-41c8-b02d-63e829414452',45,NULL,NULL,NULL,N'The Simple Starter Kit only scratches the surface of what''s possible with Umbraco. Below the Simple Starter Kit and its modules lies a great architecture that lets you implement whatever you need.
With Umbraco you''ve finally got a solid, open and reliable platform for websites as basic as the Simple site, and Umbraco can be rapidly expanded to support multi-language websites, collaboration platforms and intra/extranets, to name just a few.
Advanced functionality is created with Umbraco macros, built with XSLT and Umbraco''s award-winning .NET integration, including full support for any .NET User or Custom control. Create and integrate your own .NET macros in mere minutes with point and click simplicity. Simply copy your controls to the Umbraco website, go to the Developer section and create a new macro, selecting your control from the list.
You can also use Microsoft''s Razor syntax to quickly add dynamic functionality to your site.
We''ve also gathered the best community macros into a repository that''s also accessed from the Developer section, in the Packages area. You can find more information about creating macros, on the Umbraco website.
The sky is the limit with Umbraco, and you have the benefit a friendly community, training, and guaranteed support. Find out how to get help.
'); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (26,1070,'0d61300e-b50f-41c8-b02d-63e829414452',46,0,NULL,NULL,NULL); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (27,1071,'830eb25d-3a1a-4446-b270-1dc8798d46b5',45,NULL,NULL,NULL,N'You''ve installed Umbraco and the basic Simple website.
Edit the text on the homepage and create a site structure by adding new texpages to your site. This is all done in the Content section.
If you find the editing options provided by the Simple site too limited for you needs, simply add more properties to the page by going to the Settings section, expanding the Document Types item and adding new properties on the Generic Properties tab. You can find more information about document types and properties at the Umbraco website.
You''ll probably want to personalize your site by changing the current design. This is also done in the Settings section, either by editing the CSS styles and HTML templates or by selecting and applying a Skin. Umbraco uses master templates, so the main, common markup is placed in the Starterkit Master template, while the Homeage and Textpage have separate templates for their unique layouts. You can find more information about templates and css in umbraco at the umbraco website.
Once you''re happy with your site''s design, you might want to add more functionality, such as automated navigation. This is done by installing Umbraco modules.
'); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (28,1071,'830eb25d-3a1a-4446-b270-1dc8798d46b5',46,0,NULL,NULL,NULL); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (29,1072,'319462aa-9729-42e3-b819-b4cc2885657a',45,NULL,NULL,NULL,N'Company Name
Streetname 3432
DK-9872 City Name
Country
Phone: +45 3728-282-829
Fax: +45 3728-282-829
This contact form sends email to the addresse configured on the macro itself, edit the page in umbraco to change the addresse
Also ensure that your smtp email settings are correct, these are set in the web.config file located in the root of your website.
'); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (30,1072,'319462aa-9729-42e3-b819-b4cc2885657a',46,0,NULL,NULL,NULL); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (31,1061,'693896e8-8ac8-4b4a-86b2-c6f2c26cd6cc',40,NULL,NULL,NULL,N'The Simple Starter Kit gives you a bare-bones website that introduces you to a set of well-defined conventions for building an Umbraco website.
The Simple website is very basic in form and provided without any design or functionality - unless you add a Skin, of course. By installing the Simple Starter Kit, you''ll begin with a minimal site built on best practices. You''ll also enjoy the benefits of speaking the same "language" as the rest of the Umbraco community by using common properties and naming conventions.
Now that you know what the Simple site is, it is time to get started using Umbraco.
'); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (32,1061,'693896e8-8ac8-4b4a-86b2-c6f2c26cd6cc',41,NULL,NULL,N'Business site',NULL); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (33,1061,'693896e8-8ac8-4b4a-86b2-c6f2c26cd6cc',42,NULL,NULL,NULL,N'Off to a great start'); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (34,1063,'f654cd46-1da6-4518-a6c3-59da72fa85ac',43,NULL,NULL,NULL,N'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec id enim vel metus dignissim fermentum. Donec molestie pulvinar ultricies. Donec ullamcorper facilisis mattis. Sed id condimentum dui. Vivamus ornare congue facilisis. Nulla arcu lorem, sollicitudin at tincidunt nec, congue in dolor. Morbi mattis magna non risus convallis non dignissim sapien dictum.'); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (35,1063,'f654cd46-1da6-4518-a6c3-59da72fa85ac',44,NULL,NULL,NULL,N'Nam consectetur risus quis diam dignissim convallis. Donec congue arcu at ligula venenatis facilisis. Donec tincidunt, augue vel venenatis suscipit, ipsum orci pretium lacus, et tempor felis nisi eu diam. Fusce vel turpis quis nisl viverra pharetra sit amet et risus. Donec interdum ullamcorper sodales. Mauris feugiat velit rhoncus sapien sagittis venenatis quis non purus. Cras ac arcu velit.
Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Etiam non tortor nec risus laoreet auctor. Mauris ipsum ligula, suscipit fermentum interdum id, facilisis eu felis. Proin ut porttitor tortor. Proin quis pulvinar urna. Nullam cursus feugiat feugiat. Praesent iaculis lacus at arcu feugiat suscipit. Proin elementum tortor vitae massa euismod tempus. Donec adipiscing nunc lacinia felis aliquam mattis. Ut ipsum nisl, ultrices nec vehicula vel, blandit vel nibh. Nam augue magna, sodales eu consectetur vestibulum, consequat in libero. Nulla facilisi. Nunc id ligula urna. Sed tempus bibendum eros, a posuere ante varius eu. Mauris quis neque nec felis laoreet eleifend. Nullam bibendum molestie bibendum. Aenean vestibulum sodales orci sed mollis.
Duis tempor scelerisque condimentum. Proin convallis placerat odio, at dictum risus tempor id. Maecenas vel erat ac enim convallis vehicula at et mi. Fusce ut faucibus odio. Vestibulum pharetra mollis sem, at viverra nunc facilisis non. Vivamus vulputate nibh et ligula dictum interdum. Aenean at libero et quam ultricies dignissim in id tellus. Curabitur tincidunt nibh ullamcorper ligula dapibus volutpat. Vestibulum neque augue, blandit vitae ornare at, facilisis at sapien. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur non mollis lacus. Ut sed pulvinar nulla.
'); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (36,1064,'7a2895d3-b745-45ee-978b-d5da2e280ee0',43,NULL,NULL,NULL,N'Tortor vitae massa euismod tempus. Donec adipiscing nunc lacinia felis aliquam mattis. Ut ipsum nisl, ultrices nec vehicula vel, blandit vel nibh. Nam augue magna, sodales eu consectetur vestibulum, consequat in libero. Nulla facilisi. Nunc id ligula urna.'); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (37,1064,'7a2895d3-b745-45ee-978b-d5da2e280ee0',44,NULL,NULL,NULL,N'Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Etiam non tortor nec risus laoreet auctor. Mauris ipsum ligula, suscipit fermentum interdum id, facilisis eu felis. Proin ut porttitor tortor. Proin quis pulvinar urna. Nullam cursus feugiat feugiat. Praesent iaculis lacus at arcu feugiat suscipit. Proin elementum tortor vitae massa euismod tempus. Donec adipiscing nunc lacinia felis aliquam mattis. Ut ipsum nisl, ultrices nec vehicula vel, blandit vel nibh. Nam augue magna, sodales eu consectetur vestibulum, consequat in libero. Nulla facilisi. Nunc id ligula urna. Sed tempus bibendum eros, a posuere ante varius eu. Mauris quis neque nec felis laoreet eleifend. Nullam bibendum molestie bibendum. Aenean vestibulum sodales orci sed mollis.
Duis tempor scelerisque condimentum. Proin convallis placerat odio, at dictum risus tempor id. Maecenas vel erat ac enim convallis vehicula at et mi. Fusce ut faucibus odio. Vestibulum pharetra mollis sem, at viverra nunc facilisis non. Vivamus vulputate nibh et ligula dictum interdum. Aenean at libero et quam ultricies dignissim in id tellus. Curabitur tincidunt nibh ullamcorper ligula dapibus volutpat. Vestibulum neque augue, blandit vitae ornare at, facilisis at sapien. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur non mollis lacus. Ut sed pulvinar nulla.
Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nunc rhoncus neque pellentesque urna sodales quis rutrum sapien consectetur. Nam consectetur semper augue sit amet fringilla. Curabitur vel magna rhoncus ipsum pharetra aliquet. Morbi et molestie justo. Fusce congue tellus aliquam leo sollicitudin nec bibendum sapien egestas. Pellentesque nec sapien enim. Phasellus justo leo, congue dapibus euismod id, luctus ut ante. Curabitur justo metus, faucibus eget placerat sit amet, fringilla eget urna. Aliquam a leo ipsum.
'); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (38,1065,'3d92dbd3-9288-4587-845b-52a9f1d8b8c4',43,NULL,NULL,NULL,N'Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nunc rhoncus neque pellentesque urna sodales quis rutrum sapien consectetur. Nam consectetur semper augue sit amet fringilla. Curabitur vel magna rhoncus ipsum pharetra aliquet.'); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (39,1065,'3d92dbd3-9288-4587-845b-52a9f1d8b8c4',44,NULL,NULL,NULL,N'Duis tempor scelerisque condimentum. Proin convallis placerat odio, at dictum risus tempor id. Maecenas vel erat ac enim convallis vehicula at et mi. Fusce ut faucibus odio. Vestibulum pharetra mollis sem, at viverra nunc facilisis non. Vivamus vulputate nibh et ligula dictum interdum. Aenean at libero et quam ultricies dignissim in id tellus. Curabitur tincidunt nibh ullamcorper ligula dapibus volutpat. Vestibulum neque augue, blandit vitae ornare at, facilisis at sapien. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur non mollis lacus. Ut sed pulvinar nulla.
Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nunc rhoncus neque pellentesque urna sodales quis rutrum sapien consectetur. Nam consectetur semper augue sit amet fringilla. Curabitur vel magna rhoncus ipsum pharetra aliquet. Morbi et molestie justo. Fusce congue tellus aliquam leo sollicitudin nec bibendum sapien egestas. Pellentesque nec sapien enim. Phasellus justo leo, congue dapibus euismod id, luctus ut ante. Curabitur justo metus, faucibus eget placerat sit amet, fringilla eget urna. Aliquam a leo ipsum.
In nec tristique odio. Proin fringilla lobortis neque sit amet dapibus. Maecenas mollis tempor lacus, ac commodo sem condimentum ac. Nulla facilisi. Duis eleifend placerat laoreet. In fringilla accumsan leo a laoreet. Sed tincidunt nisl a risus blandit pellentesque. Mauris in ante ac sapien semper sagittis. Etiam luctus posuere pulvinar. Sed eros sem, sollicitudin a laoreet non, ultrices nec nulla. Morbi tempus, nunc ac malesuada tempus, ipsum neque sodales ipsum, et lacinia libero tellus a risus. Integer sit amet purus nibh, in aliquam nisi. Curabitur non imperdiet libero. Quisque magna massa, vestibulum vitae laoreet sit amet, luctus eu elit. Nam eros mi, consectetur a eleifend sed, tincidunt id odio.
'); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (40,1066,'0042e7a7-e6e5-4677-a6e3-87c379d70915',28,NULL,NULL,NULL,NULL); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (41,1066,'0042e7a7-e6e5-4677-a6e3-87c379d70915',29,NULL,NULL,NULL,N' '); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (42,1066,'0042e7a7-e6e5-4677-a6e3-87c379d70915',30,NULL,NULL,NULL,N'Hi there! , welcome to your new Umbraco powered blog. Before you start posting away, there''s a handful of things we thought you should know:
There is a comprehensive and detailed usage and configuration manual, which covers everything about setting up this blog and about blogging in general
This package is open source and developement is community driven. So if you have an idea for improvement or wish to be a part of developing this package you should join the conversaion.
You can change the appearance of this blog by changing the skin in the umbraco back-end. The skins are powered by the umbraco community. If you wish to do your own skin or just want to tweak the current one, you can find guidance in the skinners guide
Chainging the skin is just the first step, everything is extendable and hackable. This blog uses open standards and follows umbraco best practices, so everything can be tweaked. Want to know how to get started? Ask the friendly community at our.umbraco.org
Umbraco modules encapsulate specific bits of advanced functionality that are easily added to your website.
Once installed, Umbraco modules are open source and easy to customize if you want to modify the behavior for your specific needs.
Because Umbraco modules are provided under the MIT license you are free to use and modify them any way you want, with no strings attached.
To add Umbraco modules to your website, go to the Settings section, expand the Templates item, select the Starterkit Master template, then click the Customize Skin button on the toolbar.
Umbraco modules are available for various kinds of navigation, a sitemap, social media feeds, and a contact form. The list of available Umbraco modules is growing rapidly and is automatically updated from a central source, always fresh and current.
Get more information about the umbraco way...
'); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (54,1069,'fa45e37d-bde7-43fa-bbc0-04277d3f733c',46,0,NULL,NULL,NULL); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (55,1070,'381ecc59-1574-4b8e-8528-8454b3b808b0',45,NULL,NULL,NULL,N'The Simple Starter Kit only scratches the surface of what''s possible with Umbraco. Below the Simple Starter Kit and its modules lies a great architecture that lets you implement whatever you need.
With Umbraco you''ve finally got a solid, open and reliable platform for websites as basic as the Simple site, and Umbraco can be rapidly expanded to support multi-language websites, collaboration platforms and intra/extranets, to name just a few.
Advanced functionality is created with Umbraco macros, built with XSLT and Umbraco''s award-winning .NET integration, including full support for any .NET User or Custom control. Create and integrate your own .NET macros in mere minutes with point and click simplicity. Simply copy your controls to the Umbraco website, go to the Developer section and create a new macro, selecting your control from the list.
You can also use Microsoft''s Razor syntax to quickly add dynamic functionality to your site.
We''ve also gathered the best community macros into a repository that''s also accessed from the Developer section, in the Packages area. You can find more information about creating macros, on the Umbraco website.
The sky is the limit with Umbraco, and you have the benefit a friendly community, training, and guaranteed support. Find out how to get help.
'); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (56,1070,'381ecc59-1574-4b8e-8528-8454b3b808b0',46,0,NULL,NULL,NULL); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (57,1071,'065633ab-e616-4950-bffe-46d64abcd8b4',45,NULL,NULL,NULL,N'You''ve installed Umbraco and the basic Simple website.
Edit the text on the homepage and create a site structure by adding new texpages to your site. This is all done in the Content section.
If you find the editing options provided by the Simple site too limited for you needs, simply add more properties to the page by going to the Settings section, expanding the Document Types item and adding new properties on the Generic Properties tab. You can find more information about document types and properties at the Umbraco website.
You''ll probably want to personalize your site by changing the current design. This is also done in the Settings section, either by editing the CSS styles and HTML templates or by selecting and applying a Skin. Umbraco uses master templates, so the main, common markup is placed in the Starterkit Master template, while the Homeage and Textpage have separate templates for their unique layouts. You can find more information about templates and css in umbraco at the umbraco website.
Once you''re happy with your site''s design, you might want to add more functionality, such as automated navigation. This is done by installing Umbraco modules.!
'); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (58,1071,'065633ab-e616-4950-bffe-46d64abcd8b4',46,0,NULL,NULL,NULL); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (59,1072,'1ea853c4-8e42-40ad-b2f7-12a7952fd6d0',45,NULL,NULL,NULL,N'Company Name
Streetname 3432
DK-9872 City Name
Country
Phone: +45 3728-282-829
Fax: +45 3728-282-829
This contact form sends email to the addresse configured on the macro itself, edit the page in umbraco to change the addresse
Also ensure that your smtp email settings are correct, these are set in the web.config file located in the root of your website.
'); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (60,1072,'1ea853c4-8e42-40ad-b2f7-12a7952fd6d0',46,0,NULL,NULL,NULL); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (61,1067,'e3990769-396e-41a5-9c42-029bbabcc175',35,NULL,NULL,NULL,N'Hi there! , welcome to your new Umbraco powered blog. Before you start posting away, there''s a handful of things we thought you should know:
There is a comprehensive and detailed usage and configuration manual, which covers everything about setting up this blog and about blogging in general
This package is open source and developement is community driven. So if you have an idea for improvement or wish to be a part of developing this package you should join the conversaion.
You can change the appearance of this blog by changing the skin in the umbraco back-end. The skins are powered by the umbraco community. If you wish to do your own skin or just want to tweak the current one, you can find guidance in the skinners guide
Chainging the skin is just the first step, everything is extendable and hackable. This blog uses open standards and follows umbraco best practices, so everything can be tweaked. Want to know how to get started? Ask the friendly community at our.umbraco.org
Umbraco modules encapsulate specific bits of advanced functionality that are easily added to your website.
Once installed, Umbraco modules are open source and easy to customize if you want to modify the behavior for your specific needs.
Because Umbraco modules are provided under the MIT license you are free to use and modify them any way you want, with no strings attached.
To add Umbraco modules to your website, go to the Settings section, expand the Templates item, select the Starterkit Master template, then click the Customize Skin button on the toolbar.
Umbraco modules are available for various kinds of navigation, a sitemap, social media feeds, and a contact form. The list of available Umbraco modules is growing rapidly and is automatically updated from a central source, always fresh and current.
Get more information about the umbraco way...
'); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (66,1069,'ccd7b4d8-7c9f-48bd-a07e-ce88ff6a6777',46,0,NULL,NULL,NULL); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (67,1071,'e1350e35-663c-4273-b9e2-acc1c30ef15e',45,NULL,NULL,NULL,N'You''ve installed Umbraco and the basic Simple website.
Edit the text on the homepage and create a site structure by adding new texpages to your site. This is all done in the Content section.
If you find the editing options provided by the Simple site too limited for you needs, simply add more properties to the page by going to the Settings section, expanding the Document Types item and adding new properties on the Generic Properties tab. You can find more information about document types and properties at the Umbraco website.
You''ll probably want to personalize your site by changing the current design. This is also done in the Settings section, either by editing the CSS styles and HTML templates or by selecting and applying a Skin. Umbraco uses master templates, so the main, common markup is placed in the Starterkit Master template, while the Homeage and Textpage have separate templates for their unique layouts. You can find more information about templates and css in umbraco at the umbraco website.
Once you''re happy with your site''s design, you might want to add more functionality, such as automated navigation. This is done by installing Umbraco modules.!
'); GO INSERT INTO [cmsPropertyData] ([id],[contentNodeId],[versionId],[propertytypeid],[dataInt],[dataDate],[dataNvarchar],[dataNtext]) VALUES (68,1071,'e1350e35-663c-4273-b9e2-acc1c30ef15e',46,0,NULL,NULL,NULL); GO SET IDENTITY_INSERT [cmsPropertyData] OFF; GO INSERT INTO [cmsPreviewXml] ([nodeId],[versionId],[timestamp],[xml]) VALUES (1061,'3c22a413-d136-4d21-be8b-8a0d3d6b80db',{ts '2013-01-10 11:40:51.200'},N'The Simple website is very basic in form and provided without any design or functionality - unless you add a Skin, of course. By installing the Simple Starter Kit, you''ll begin with a minimal site built on best practices. You''ll also enjoy the benefits of speaking the same "language" as the rest of the Umbraco community by using common properties and naming conventions.
Now that you know what the Simple site is, it is time to get started using Umbraco.
]]>Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Etiam non tortor nec risus laoreet auctor. Mauris ipsum ligula, suscipit fermentum interdum id, facilisis eu felis. Proin ut porttitor tortor. Proin quis pulvinar urna. Nullam cursus feugiat feugiat. Praesent iaculis lacus at arcu feugiat suscipit. Proin elementum tortor vitae massa euismod tempus. Donec adipiscing nunc lacinia felis aliquam mattis. Ut ipsum nisl, ultrices nec vehicula vel, blandit vel nibh. Nam augue magna, sodales eu consectetur vestibulum, consequat in libero. Nulla facilisi. Nunc id ligula urna. Sed tempus bibendum eros, a posuere ante varius eu. Mauris quis neque nec felis laoreet eleifend. Nullam bibendum molestie bibendum. Aenean vestibulum sodales orci sed mollis.
Duis tempor scelerisque condimentum. Proin convallis placerat odio, at dictum risus tempor id. Maecenas vel erat ac enim convallis vehicula at et mi. Fusce ut faucibus odio. Vestibulum pharetra mollis sem, at viverra nunc facilisis non. Vivamus vulputate nibh et ligula dictum interdum. Aenean at libero et quam ultricies dignissim in id tellus. Curabitur tincidunt nibh ullamcorper ligula dapibus volutpat. Vestibulum neque augue, blandit vitae ornare at, facilisis at sapien. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur non mollis lacus. Ut sed pulvinar nulla.
]]>Duis tempor scelerisque condimentum. Proin convallis placerat odio, at dictum risus tempor id. Maecenas vel erat ac enim convallis vehicula at et mi. Fusce ut faucibus odio. Vestibulum pharetra mollis sem, at viverra nunc facilisis non. Vivamus vulputate nibh et ligula dictum interdum. Aenean at libero et quam ultricies dignissim in id tellus. Curabitur tincidunt nibh ullamcorper ligula dapibus volutpat. Vestibulum neque augue, blandit vitae ornare at, facilisis at sapien. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur non mollis lacus. Ut sed pulvinar nulla.
Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nunc rhoncus neque pellentesque urna sodales quis rutrum sapien consectetur. Nam consectetur semper augue sit amet fringilla. Curabitur vel magna rhoncus ipsum pharetra aliquet. Morbi et molestie justo. Fusce congue tellus aliquam leo sollicitudin nec bibendum sapien egestas. Pellentesque nec sapien enim. Phasellus justo leo, congue dapibus euismod id, luctus ut ante. Curabitur justo metus, faucibus eget placerat sit amet, fringilla eget urna. Aliquam a leo ipsum.
]]>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nunc rhoncus neque pellentesque urna sodales quis rutrum sapien consectetur. Nam consectetur semper augue sit amet fringilla. Curabitur vel magna rhoncus ipsum pharetra aliquet. Morbi et molestie justo. Fusce congue tellus aliquam leo sollicitudin nec bibendum sapien egestas. Pellentesque nec sapien enim. Phasellus justo leo, congue dapibus euismod id, luctus ut ante. Curabitur justo metus, faucibus eget placerat sit amet, fringilla eget urna. Aliquam a leo ipsum.
In nec tristique odio. Proin fringilla lobortis neque sit amet dapibus. Maecenas mollis tempor lacus, ac commodo sem condimentum ac. Nulla facilisi. Duis eleifend placerat laoreet. In fringilla accumsan leo a laoreet. Sed tincidunt nisl a risus blandit pellentesque. Mauris in ante ac sapien semper sagittis. Etiam luctus posuere pulvinar. Sed eros sem, sollicitudin a laoreet non, ultrices nec nulla. Morbi tempus, nunc ac malesuada tempus, ipsum neque sodales ipsum, et lacinia libero tellus a risus. Integer sit amet purus nibh, in aliquam nisi. Curabitur non imperdiet libero. Quisque magna massa, vestibulum vitae laoreet sit amet, luctus eu elit. Nam eros mi, consectetur a eleifend sed, tincidunt id odio.
]]>There is a comprehensive and detailed usage and configuration manual, which covers everything about setting up this blog and about blogging in general
This package is open source and developement is community driven. So if you have an idea for improvement or wish to be a part of developing this package you should join the conversaion.
You can change the appearance of this blog by changing the skin in the umbraco back-end. The skins are powered by the umbraco community. If you wish to do your own skin or just want to tweak the current one, you can find guidance in the skinners guide
Chainging the skin is just the first step, everything is extendable and hackable. This blog uses open standards and follows umbraco best practices, so everything can be tweaked. Want to know how to get started? Ask the friendly community at our.umbraco.org
Once installed, Umbraco modules are open source and easy to customize if you want to modify the behavior for your specific needs.
Because Umbraco modules are provided under the MIT license you are free to use and modify them any way you want, with no strings attached.
To add Umbraco modules to your website, go to the Settings section, expand the Templates item, select the Starterkit Master template, then click the Customize Skin button on the toolbar.
Umbraco modules are available for various kinds of navigation, a sitemap, social media feeds, and a contact form. The list of available Umbraco modules is growing rapidly and is automatically updated from a central source, always fresh and current.
Get more information about the umbraco way.
]]>With Umbraco you''ve finally got a solid, open and reliable platform for websites as basic as the Simple site, and Umbraco can be rapidly expanded to support multi-language websites, collaboration platforms and intra/extranets, to name just a few.
Advanced functionality is created with Umbraco macros, built with XSLT and Umbraco''s award-winning .NET integration, including full support for any .NET User or Custom control. Create and integrate your own .NET macros in mere minutes with point and click simplicity. Simply copy your controls to the Umbraco website, go to the Developer section and create a new macro, selecting your control from the list.
You can also use Microsoft''s Razor syntax to quickly add dynamic functionality to your site.
We''ve also gathered the best community macros into a repository that''s also accessed from the Developer section, in the Packages area. You can find more information about creating macros, on the Umbraco website.
The sky is the limit with Umbraco, and you have the benefit a friendly community, training, and guaranteed support. Find out how to get help.
]]>Edit the text on the homepage and create a site structure by adding new texpages to your site. This is all done in the Content section.
If you find the editing options provided by the Simple site too limited for you needs, simply add more properties to the page by going to the Settings section, expanding the Document Types item and adding new properties on the Generic Properties tab. You can find more information about document types and properties at the Umbraco website.
You''ll probably want to personalize your site by changing the current design. This is also done in the Settings section, either by editing the CSS styles and HTML templates or by selecting and applying a Skin. Umbraco uses master templates, so the main, common markup is placed in the Starterkit Master template, while the Homeage and Textpage have separate templates for their unique layouts. You can find more information about templates and css in umbraco at the umbraco website.
Once you''re happy with your site''s design, you might want to add more functionality, such as automated navigation. This is done by installing Umbraco modules.
]]>Company Name
Streetname 3432
DK-9872 City Name
Country
Phone: +45 3728-282-829
Fax: +45 3728-282-829
This contact form sends email to the addresse configured on the macro itself, edit the page in umbraco to change the addresse
Also ensure that your smtp email settings are correct, these are set in the web.config file located in the root of your website.
]]>There is a comprehensive and detailed usage and configuration manual, which covers everything about setting up this blog and about blogging in general
This package is open source and developement is community driven. So if you have an idea for improvement or wish to be a part of developing this package you should join the conversaion.
You can change the appearance of this blog by changing the skin in the umbraco back-end. The skins are powered by the umbraco community. If you wish to do your own skin or just want to tweak the current one, you can find guidance in the skinners guide
Chainging the skin is just the first step, everything is extendable and hackable. This blog uses open standards and follows umbraco best practices, so everything can be tweaked. Want to know how to get started? Ask the friendly community at our.umbraco.org
Once installed, Umbraco modules are open source and easy to customize if you want to modify the behavior for your specific needs.
Because Umbraco modules are provided under the MIT license you are free to use and modify them any way you want, with no strings attached.
To add Umbraco modules to your website, go to the Settings section, expand the Templates item, select the Starterkit Master template, then click the Customize Skin button on the toolbar.
Umbraco modules are available for various kinds of navigation, a sitemap, social media feeds, and a contact form. The list of available Umbraco modules is growing rapidly and is automatically updated from a central source, always fresh and current.
Get more information about the umbraco way...
]]>Edit the text on the homepage and create a site structure by adding new texpages to your site. This is all done in the Content section.
If you find the editing options provided by the Simple site too limited for you needs, simply add more properties to the page by going to the Settings section, expanding the Document Types item and adding new properties on the Generic Properties tab. You can find more information about document types and properties at the Umbraco website.
You''ll probably want to personalize your site by changing the current design. This is also done in the Settings section, either by editing the CSS styles and HTML templates or by selecting and applying a Skin. Umbraco uses master templates, so the main, common markup is placed in the Starterkit Master template, while the Homeage and Textpage have separate templates for their unique layouts. You can find more information about templates and css in umbraco at the umbraco website.
Once you''re happy with your site''s design, you might want to add more functionality, such as automated navigation. This is done by installing Umbraco modules.!
]]>Edit the text on the homepage and create a site structure by adding new texpages to your site. This is all done in the Content section.
If you find the editing options provided by the Simple site too limited for you needs, simply add more properties to the page by going to the Settings section, expanding the Document Types item and adding new properties on the Generic Properties tab. You can find more information about document types and properties at the Umbraco website.
You''ll probably want to personalize your site by changing the current design. This is also done in the Settings section, either by editing the CSS styles and HTML templates or by selecting and applying a Skin. Umbraco uses master templates, so the main, common markup is placed in the Starterkit Master template, while the Homeage and Textpage have separate templates for their unique layouts. You can find more information about templates and css in umbraco at the umbraco website.
Once you''re happy with your site''s design, you might want to add more functionality, such as automated navigation. This is done by installing Umbraco modules.!
]]>The Simple website is very basic in form and provided without any design or functionality - unless you add a Skin, of course. By installing the Simple Starter Kit, you''ll begin with a minimal site built on best practices. You''ll also enjoy the benefits of speaking the same "language" as the rest of the Umbraco community by using common properties and naming conventions.
Now that you know what the Simple site is, it is time to get started using Umbraco.
]]>Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Etiam non tortor nec risus laoreet auctor. Mauris ipsum ligula, suscipit fermentum interdum id, facilisis eu felis. Proin ut porttitor tortor. Proin quis pulvinar urna. Nullam cursus feugiat feugiat. Praesent iaculis lacus at arcu feugiat suscipit. Proin elementum tortor vitae massa euismod tempus. Donec adipiscing nunc lacinia felis aliquam mattis. Ut ipsum nisl, ultrices nec vehicula vel, blandit vel nibh. Nam augue magna, sodales eu consectetur vestibulum, consequat in libero. Nulla facilisi. Nunc id ligula urna. Sed tempus bibendum eros, a posuere ante varius eu. Mauris quis neque nec felis laoreet eleifend. Nullam bibendum molestie bibendum. Aenean vestibulum sodales orci sed mollis.
Duis tempor scelerisque condimentum. Proin convallis placerat odio, at dictum risus tempor id. Maecenas vel erat ac enim convallis vehicula at et mi. Fusce ut faucibus odio. Vestibulum pharetra mollis sem, at viverra nunc facilisis non. Vivamus vulputate nibh et ligula dictum interdum. Aenean at libero et quam ultricies dignissim in id tellus. Curabitur tincidunt nibh ullamcorper ligula dapibus volutpat. Vestibulum neque augue, blandit vitae ornare at, facilisis at sapien. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur non mollis lacus. Ut sed pulvinar nulla.
]]>Duis tempor scelerisque condimentum. Proin convallis placerat odio, at dictum risus tempor id. Maecenas vel erat ac enim convallis vehicula at et mi. Fusce ut faucibus odio. Vestibulum pharetra mollis sem, at viverra nunc facilisis non. Vivamus vulputate nibh et ligula dictum interdum. Aenean at libero et quam ultricies dignissim in id tellus. Curabitur tincidunt nibh ullamcorper ligula dapibus volutpat. Vestibulum neque augue, blandit vitae ornare at, facilisis at sapien. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur non mollis lacus. Ut sed pulvinar nulla.
Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nunc rhoncus neque pellentesque urna sodales quis rutrum sapien consectetur. Nam consectetur semper augue sit amet fringilla. Curabitur vel magna rhoncus ipsum pharetra aliquet. Morbi et molestie justo. Fusce congue tellus aliquam leo sollicitudin nec bibendum sapien egestas. Pellentesque nec sapien enim. Phasellus justo leo, congue dapibus euismod id, luctus ut ante. Curabitur justo metus, faucibus eget placerat sit amet, fringilla eget urna. Aliquam a leo ipsum.
]]>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nunc rhoncus neque pellentesque urna sodales quis rutrum sapien consectetur. Nam consectetur semper augue sit amet fringilla. Curabitur vel magna rhoncus ipsum pharetra aliquet. Morbi et molestie justo. Fusce congue tellus aliquam leo sollicitudin nec bibendum sapien egestas. Pellentesque nec sapien enim. Phasellus justo leo, congue dapibus euismod id, luctus ut ante. Curabitur justo metus, faucibus eget placerat sit amet, fringilla eget urna. Aliquam a leo ipsum.
In nec tristique odio. Proin fringilla lobortis neque sit amet dapibus. Maecenas mollis tempor lacus, ac commodo sem condimentum ac. Nulla facilisi. Duis eleifend placerat laoreet. In fringilla accumsan leo a laoreet. Sed tincidunt nisl a risus blandit pellentesque. Mauris in ante ac sapien semper sagittis. Etiam luctus posuere pulvinar. Sed eros sem, sollicitudin a laoreet non, ultrices nec nulla. Morbi tempus, nunc ac malesuada tempus, ipsum neque sodales ipsum, et lacinia libero tellus a risus. Integer sit amet purus nibh, in aliquam nisi. Curabitur non imperdiet libero. Quisque magna massa, vestibulum vitae laoreet sit amet, luctus eu elit. Nam eros mi, consectetur a eleifend sed, tincidunt id odio.
]]>There is a comprehensive and detailed usage and configuration manual, which covers everything about setting up this blog and about blogging in general
This package is open source and developement is community driven. So if you have an idea for improvement or wish to be a part of developing this package you should join the conversaion.
You can change the appearance of this blog by changing the skin in the umbraco back-end. The skins are powered by the umbraco community. If you wish to do your own skin or just want to tweak the current one, you can find guidance in the skinners guide
Chainging the skin is just the first step, everything is extendable and hackable. This blog uses open standards and follows umbraco best practices, so everything can be tweaked. Want to know how to get started? Ask the friendly community at our.umbraco.org
Once installed, Umbraco modules are open source and easy to customize if you want to modify the behavior for your specific needs.
Because Umbraco modules are provided under the MIT license you are free to use and modify them any way you want, with no strings attached.
To add Umbraco modules to your website, go to the Settings section, expand the Templates item, select the Starterkit Master template, then click the Customize Skin button on the toolbar.
Umbraco modules are available for various kinds of navigation, a sitemap, social media feeds, and a contact form. The list of available Umbraco modules is growing rapidly and is automatically updated from a central source, always fresh and current.
Get more information about the umbraco way...
]]>With Umbraco you''ve finally got a solid, open and reliable platform for websites as basic as the Simple site, and Umbraco can be rapidly expanded to support multi-language websites, collaboration platforms and intra/extranets, to name just a few.
Advanced functionality is created with Umbraco macros, built with XSLT and Umbraco''s award-winning .NET integration, including full support for any .NET User or Custom control. Create and integrate your own .NET macros in mere minutes with point and click simplicity. Simply copy your controls to the Umbraco website, go to the Developer section and create a new macro, selecting your control from the list.
You can also use Microsoft''s Razor syntax to quickly add dynamic functionality to your site.
We''ve also gathered the best community macros into a repository that''s also accessed from the Developer section, in the Packages area. You can find more information about creating macros, on the Umbraco website.
The sky is the limit with Umbraco, and you have the benefit a friendly community, training, and guaranteed support. Find out how to get help.
]]>Edit the text on the homepage and create a site structure by adding new texpages to your site. This is all done in the Content section.
If you find the editing options provided by the Simple site too limited for you needs, simply add more properties to the page by going to the Settings section, expanding the Document Types item and adding new properties on the Generic Properties tab. You can find more information about document types and properties at the Umbraco website.
You''ll probably want to personalize your site by changing the current design. This is also done in the Settings section, either by editing the CSS styles and HTML templates or by selecting and applying a Skin. Umbraco uses master templates, so the main, common markup is placed in the Starterkit Master template, while the Homeage and Textpage have separate templates for their unique layouts. You can find more information about templates and css in umbraco at the umbraco website.
Once you''re happy with your site''s design, you might want to add more functionality, such as automated navigation. This is done by installing Umbraco modules.!
]]>Company Name
Streetname 3432
DK-9872 City Name
Country
Phone: +45 3728-282-829
Fax: +45 3728-282-829
This contact form sends email to the addresse configured on the macro itself, edit the page in umbraco to change the addresse
Also ensure that your smtp email settings are correct, these are set in the web.config file located in the root of your website.
]]>