Skip to content

Commit 54e2dab

Browse files
authored
Merge pull request #7564 from umbraco/broken-links-cms
Fixed broken links
2 parents ceb114c + 78b82d3 commit 54e2dab

File tree

29 files changed

+68
-59
lines changed

29 files changed

+68
-59
lines changed

16/umbraco-cms/customizing/extending-overview/extension-types/backoffice-entry-point.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ import '/App_Plugins/YourFolder/global.css';
125125

126126
It is recommended to make use of the Type intellisense that we provide.
127127

128-
When writing your Manifest in TypeScript, you should use the `UmbExtensionManifest` type. Read the [TypeScript setup](broken-reference/) article to make sure you have Types correctly configured.
128+
When writing your Manifest in TypeScript, you should use the `UmbExtensionManifest` type. Read the [TypeScript setup](../../../customizing/development-flow/README.md#typescript-setup) article to make sure you have Types correctly configured.
129129

130130
{% code title="index.ts" %}
131131
```typescript

16/umbraco-cms/extending/packages/creating-a-package.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ Additionally, the `.csproj` file is configured to support NuGet packaging, allow
112112
Since the `umbraco-extension` template does not generate an `App_Plugins` folder by default, you will need to manually create it.
113113

114114
1. Create an `App_Plugins` folder in the downloaded package folder.
115-
2. Go to the `welcome-dashboard` folder created in the [Creating a Custom Dashboard Tutorial](../../tutorials/creating-a-custom-dashboard/#setting-up-a-package).
115+
2. Go to the `welcome-dashboard` folder created in the [Creating a Custom Dashboard Tutorial](../../tutorials/creating-a-custom-dashboard/README.md#setting-up-a-package).
116116
3. Transfer or copy the `welcome-dashboard` folder in the `App_Plugins` folder.
117117

118118
![App\_Plugins with dashboard files](images/app-plugins-content.png)

16/umbraco-cms/fundamentals/backoffice/property-editors/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The following Property Editors have been removed with the release of Umbraco 14:
1616
* Grid Layout
1717
* Nested content
1818

19-
We recommend using the [Block Editor](built-in-umbraco-property-editors/block-editor/) or the [Rich Text Editor Blocks](broken-reference) instead.
19+
We recommend using the [Block Editor](built-in-umbraco-property-editors/block-editor/README.md) or the [Rich Text Editor Blocks](built-in-umbraco-property-editors/rich-text-editor/README.md) instead.
2020
{% endhint %}
2121

2222
When creating a Data Type, specify the property editor for the Data Type to use by selecting from the "Property editor" list (as shown below).

16/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/block-grid-editor.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ The Data Type editor allows you to configure the following properties:
5151

5252
## Setup Block Types
5353

54-
Block Types are based on [**Element Types**](../../../../data/defining-content/#element-types). These can be created beforehand or while setting up your Block Types.
54+
Block Types are based on [**Element Types**](../../../../data/defining-content/default-document-types.md#element-type). These can be created beforehand or while setting up your Block Types.
5555

5656
Once you have added an Element Type as a Block Type on your Block Grid Data Type you have the option to configure it.
5757

@@ -197,8 +197,8 @@ The Block is resized using a click-and-drag feature. Moving the mouse will chang
197197

198198
Rendering the stored value of your **Block Grid** property editor can be done in two ways:
199199

200-
1. [Default rendering](block-grid-editor.md#1-default-rendering)
201-
2. [Build your own rendering](block-grid-editor.md#2-build-your-own-rendering)
200+
1. [Default rendering](#1-default-rendering)
201+
2. [Build your own rendering](#2-build-custom-rendering)
202202

203203
### 1. Default rendering
204204

16/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/block-list-editor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
This article is a work in progress and may undergo further revisions, updates, or amendments. The information contained herein is subject to change without notice.
1111
{% endhint %}
1212

13-
**Block List** is a list editing property editor, using [Element Types](../../../../data/defining-content/#element-types) to define the list item schema.
13+
**Block List** is a list editing property editor, using [Element Types](../../../../data/defining-content/default-document-types.md#element-type) to define the list item schema.
1414

1515
{% hint style="info" %}
1616
The _Block List_ replaces the obsolete _Nested Content_ editor.

16/umbraco-cms/fundamentals/data/content-version-cleanup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The feature can be configured in the `appSettings.json`:
3939
}
4040
```
4141

42-
For sites with stricter requirements, it is possible to opt-out of both options globally, see [ContentSettings](../../reference/configuration/contentsettings.md#contentversioncleanuppolicy) and by Document Type.
42+
For sites with stricter requirements, it is possible to opt-out of both options globally, see [ContentSettings](../../reference/configuration/contentsettings.md#content-version-cleanup-policy) and by Document Type.
4343

4444
Additionally, it is possible to keep the feature enabled but mark specific versions to keep forever.
4545

16/umbraco-cms/fundamentals/data/creating-media/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ Media in Umbraco CMS is handled the same way as content. You define **Media Type
1919
The default Media Types aim to cover most needs for media on a website. You do not need to define your Media Types to start using the Media section. The tools for organizing and uploading the media are already in place.
2020

2121
{% hint style="info" %}
22-
If you have upgraded from an older version than 8.14 the Media Types listed above are not added automatically. You can add those types manually yourselves by following the steps below ['Creating a new Media Type'](./#creating-a-media-type). On the [default media types page](default-media-types.md), you will find a detailed overview of all Media Types.
22+
If you have upgraded from an older version than 8.14 the Media Types listed above are not added automatically. You can add those types manually yourselves by following the steps below ['Creating a new Media Type'](./README.md#creating-a-media-type). On the [default media types page](default-media-types.md), you will find a detailed overview of all Media Types.
2323
{% endhint %}
2424

2525
## Uploading Media
2626

2727
You can upload media in two different ways:
2828

29-
* [Through the Media section](./#add-media-through-the-media-section) and
30-
* [Through the Content section](./#add-media-through-the-content-section)
29+
* [Through the Media section](#add-media-through-the-media-section) and
30+
* [Through the Content section](#add-media-through-the-content-section)
3131

3232
### Add media through the Media section
3333

16/umbraco-cms/fundamentals/data/dictionary-items.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ To edit a dictionary item, follow these steps:
5151
{% hint style="info" %}
5252
It will only be possible to edit the language(s) that the given user has access to. The value of the remaining languages will be _read-only_.
5353

54-
Which language a user has access to is determined by the "Language permissions" set on the User Group. Learn more about this feature in the [Users](users/#creating-a-user-group) article.
54+
Which language a user has access to is determined by the "Language permissions" set on the User Group. Learn more about this feature in the [Users](users/README.md#creating-a-user-group) article.
5555
{% endhint %}
5656

5757
## Fetching Dictionary Values in the Template

16/umbraco-cms/fundamentals/design/rendering-content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ _The primary task of any template is to render the values of the current page or
44

55
## Display a value in your template view
66

7-
Each property in your [Document Type](../data/defining-content/#what-is-a-document-type) has an alias, this is used to specify where in the template view to display the value.
7+
Each property in your [Document Type](../data/defining-content/README.md#what-is-a-document-type) has an alias, this is used to specify where in the template view to display the value.
88

99
```html
1010
<h1>@Model.Value("pageTitle")</h1>

16/umbraco-cms/fundamentals/design/rendering-media.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,4 +144,4 @@ If you want the original, uncropped image, you can ignore the GetCropUrl extensi
144144

145145
* [Media Picker](../backoffice/property-editors/built-in-umbraco-property-editors/media-picker-3.md)
146146
* [Image Cropper](../backoffice/property-editors/built-in-umbraco-property-editors/image-cropper.md)
147-
* [Creating a Media Type](../data/creating-media/#creating-a-media-type)
147+
* [Creating a Media Type](../data/creating-media/README.md#creating-a-media-type)

0 commit comments

Comments
 (0)