Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed unused content #8

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
resources/
node_modules/
package-lock.json
.hugo_build.lock
.hugo_build.lock
.DS_Store
1 change: 1 addition & 0 deletions content/en/about/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: About Goldydocs
linkTitle: About
draft: true
---

{{% blocks/cover title="About Goldydocs" image_anchor="bottom" height="auto" %}}
Expand Down
1 change: 1 addition & 0 deletions content/en/blog/_index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: Blog
menu: {main: {weight: 30}}
draft: true
---

This is the **blog** section. It has two categories: News and Releases.
Expand Down
1 change: 1 addition & 0 deletions content/en/blog/news/_index.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
---
title: News
weight: 20
draft: true
---
1 change: 1 addition & 0 deletions content/en/blog/news/first-post/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ resources:
title: "Image #:counter"
params:
byline: "Photo: Riona MacNamara / CC-BY-CA"
draft: true
---

**This is a typical blog post that includes images.**
Expand Down
1 change: 1 addition & 0 deletions content/en/blog/news/second-post.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ date: 2018-10-06
description: >
A short lead description about this content page. Text here can also be
**bold** or _italic_ and can even be split over multiple paragraphs.
draft: true
---

Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://github.com) should be blue with no underlines (unless hovered over).
Expand Down
1 change: 1 addition & 0 deletions content/en/blog/releases/_index.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
---
title: Releases
weight: 20
draft: true
---
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ date: 2018-01-04
description: >
A short lead description about this content page. Text here can also be
**bold** or _italic_ and can even be split over multiple paragraphs.
draft: true
---

Text can be **bold**, _italic_, or ~~strikethrough~~. [Links](https://github.com) should be blue with no underlines (unless hovered over).
Expand Down
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"_hugo-dev": "npm run _hugo -- -e dev -DFE",
"_local": "npx cross-env HUGO_MODULE_WORKSPACE=docsy.work",
"_serve": "npm run _hugo-dev -- --minify serve",
"_serveProduction": "npm run _hugo -- --minify serve",
"build:preview": "npm run _hugo-dev -- --minify --baseURL \"${DEPLOY_PRIME_URL:-/}\"",
"build:production": "npm run _hugo -- --minify",
"build": "npm run _build -- ",
Expand All @@ -29,6 +30,7 @@
"postbuild:preview": "npm run _check:links",
"postbuild:production": "npm run _check:links",
"serve": "npm run _serve",
"serveProduction": "npm run _serveProduction",
"test": "npm run check:links",
"update:pkg:dep": "npm install --save-dev autoprefixer@latest postcss-cli@latest",
"update:pkg:hugo": "npm install --save-dev --save-exact hugo-extended@latest"
Expand Down