Skip to content

Commit 320eb79

Browse files
authored
Merge pull request #8 from sabre1041/remove-unused-content
Removed unused content
2 parents f8a6949 + 6aaf99c commit 320eb79

9 files changed

Lines changed: 11 additions & 1 deletion

File tree

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
resources/
33
node_modules/
44
package-lock.json
5-
.hugo_build.lock
5+
.hugo_build.lock
6+
.DS_Store

content/en/about/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: About Goldydocs
33
linkTitle: About
4+
draft: true
45
---
56

67
{{% blocks/cover title="About Goldydocs" image_anchor="bottom" height="auto" %}}

content/en/blog/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: Blog
33
menu: {main: {weight: 30}}
4+
draft: true
45
---
56

67
This is the **blog** section. It has two categories: News and Releases.

content/en/blog/news/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
---
22
title: News
33
weight: 20
4+
draft: true
45
---

content/en/blog/news/first-post/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ resources:
1111
title: "Image #:counter"
1212
params:
1313
byline: "Photo: Riona MacNamara / CC-BY-CA"
14+
draft: true
1415
---
1516

1617
**This is a typical blog post that includes images.**

content/en/blog/news/second-post.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ date: 2018-10-06
44
description: >
55
A short lead description about this content page. Text here can also be
66
**bold** or _italic_ and can even be split over multiple paragraphs.
7+
draft: true
78
---
89

910
Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://github.com) should be blue with no underlines (unless hovered over).

content/en/blog/releases/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
---
22
title: Releases
33
weight: 20
4+
draft: true
45
---

content/en/blog/releases/in-depth-monoliths-detailed-spec.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ date: 2018-01-04
44
description: >
55
A short lead description about this content page. Text here can also be
66
**bold** or _italic_ and can even be split over multiple paragraphs.
7+
draft: true
78
---
89

910
Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://github.com) should be blue with no underlines (unless hovered over).

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"_hugo-dev": "npm run _hugo -- -e dev -DFE",
1717
"_local": "npx cross-env HUGO_MODULE_WORKSPACE=docsy.work",
1818
"_serve": "npm run _hugo-dev -- --minify serve",
19+
"_serveProduction": "npm run _hugo -- --minify serve",
1920
"build:preview": "npm run _hugo-dev -- --minify --baseURL \"${DEPLOY_PRIME_URL:-/}\"",
2021
"build:production": "npm run _hugo -- --minify",
2122
"build": "npm run _build -- ",
@@ -29,6 +30,7 @@
2930
"postbuild:preview": "npm run _check:links",
3031
"postbuild:production": "npm run _check:links",
3132
"serve": "npm run _serve",
33+
"serveProduction": "npm run _serveProduction",
3234
"test": "npm run check:links",
3335
"update:pkg:dep": "npm install --save-dev autoprefixer@latest postcss-cli@latest",
3436
"update:pkg:hugo": "npm install --save-dev --save-exact hugo-extended@latest"

0 commit comments

Comments
 (0)