This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html> | |
| <head> | |
| <title>Test display of HTML elements</title> | |
| </head> | |
| <body> | |
| <h1>Testing display of HTML elements</h1> | |
| <h2>This is 2nd level heading</h2> | |
| <p>This is a test paragraph.</p> | |
| <h3>This is 3rd level heading</h3> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { css, customElement, html } from '@umbraco-cms/backoffice/external/lit'; | |
| import { UmbLitElement } from '@umbraco-cms/backoffice/lit-element'; | |
| import { UmbTextStyles } from '@umbraco-cms/backoffice/style'; | |
| const elementName = 'umb-custom-element'; | |
| @customElement(elementName) | |
| export class UmbCustomElement extends UmbLitElement { | |
| constructor() { | |
| super(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| :root { | |
| /* Dracula Theme | |
| * Links for reference: | |
| * https://draculatheme.com/contribute | |
| * https://spec.draculatheme.com/ | |
| * https://github.com/dracula/visual-studio-code/blob/master/src/dracula.yml | |
| */ | |
| /* Dracula: Base */ | |
| --umb-dragula-background: #282a36; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- Copied from Hendy https://our.umbraco.org/forum/umbraco-7/using-umbraco-7/72814-creating-a-list-of-unused-doc-types#comment-233729 | |
| -- Find all unused docTypes | |
| -- These results may contain docTypes that are masters of used ones, so need to exclude these too... | |
| SELECT | |
| A.nodeId as 'DocTypeId', | |
| B.text AS 'Name', | |
| A.alias AS 'Alias' | |
| FROM | |
| cmsContentType A LEFT JOIN |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| angular.module("umbraco").run([ | |
| "$compile", | |
| "appState", | |
| "eventsService", | |
| function ($compile, appState, eventsService) { | |
| eventsService.on("app.ready", function (e, args) { | |
| // console.log("app.ready", e, args); | |
| var scope = e.targetScope.$new(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Collections.Generic; | |
| using System.Linq; | |
| using Umbraco.Community.Contentment.DataEditors; | |
| using Umbraco.Core.PropertyEditors; | |
| using Umbraco.Web; | |
| namespace MyWebsite.DataSources | |
| { | |
| public class PropertyDataDataSource : IDataListSource | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /* | |
| Plugin Name: Remove WP Meta | |
| Plugin URI: http://leekelleher.com/ | |
| Description: This plugin removes the auto-generated WP meta tags from each webpage. | |
| Author: Lee Kelleher | |
| Version: 0.1.0 | |
| Author URI: http://leekelleher.com/ | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| System overview | |
| Staff, roles & responsibilities | |
| Environments | |
| Applications | |
| Software Licenses | |
| Version control | |
| Process Flows | |
| Documentation | |
| Support & Maintenance | |
| Issue Submission & Resolution |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Copyright © 2021 Lee Kelleher. | |
| * This Source Code Form is subject to the terms of the Mozilla Public | |
| * License, v. 2.0. If a copy of the MPL was not distributed with this | |
| * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using Newtonsoft.Json.Linq; | |
| using Umbraco.Core; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Copyright © 2021 Lee Kelleher. | |
| * This Source Code Form is subject to the terms of the Mozilla Public | |
| * License, v. 2.0. If a copy of the MPL was not distributed with this | |
| * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using Examine; | |
| using Examine.Search; | |
| using Umbraco.Core; |
NewerOlder