Add redirects for old page links

This commit is contained in:
Justin Ehrenhofer
2024-05-15 10:32:13 -05:00
parent 87549713a8
commit be5d79d705
48 changed files with 242 additions and 10 deletions

View File

@@ -7,3 +7,5 @@ gem "jekyll", "~> 4.3.3" # installed by `gem jekyll`
gem "just-the-docs" # always download the latest release
gem "jekyll-default-layout"
gem "jekyll-sitemap"

View File

@@ -42,6 +42,8 @@ GEM
sass-embedded (~> 1.54)
jekyll-seo-tag (2.8.0)
jekyll (>= 3.8, < 5.0)
jekyll-sitemap (1.4.0)
jekyll (>= 3.7, < 5.0)
jekyll-watch (2.2.1)
listen (~> 3.0)
just-the-docs (0.7.0)
@@ -87,6 +89,7 @@ PLATFORMS
DEPENDENCIES
jekyll (~> 4.3.3)
jekyll-default-layout
jekyll-sitemap
just-the-docs
BUNDLED WITH

View File

@@ -12,7 +12,7 @@ The goal is to educate and onboard power users faster.
Contributing is easy and much appreciated! You can contribute in the markdown format by opening a pull request.
Start by interacting with the `/docs` folder. The documentation is organized into various folders. Each of these folders contain markdown files.
The documentation is organized into various folders (skip over the ones that start with an underscore `_`). Each of these folders contain markdown files.
Each folder needs a markdown file in it with the same name, acting as the parent. Children markdown files can be added to the folder. Please follow another example folder for the correct header content or follow the [Just the Docs documentation](https://just-the-docs.com/).
@@ -22,7 +22,7 @@ If you do not know how to make a pull request, please create a GitHub issue with
## Images
Images should be placed under a folder in `/images` using the same folder name for the relevant markdown file in `/docs`.
Images should be placed under a folder in `/images` using the same folder name for the relevant markdown file.
When linking images, follow a format like this:

View File

@@ -47,3 +47,6 @@ compress_html:
startings: []
blanklines: false
profile: false
include:
- _redirects

View File

@@ -0,0 +1,6 @@
---
layout: redirected
sitemap: false
permalink: /docs/accepting-monero/overview
redirect_to: /accepting-monero/overview
---

View File

@@ -0,0 +1,6 @@
---
layout: redirected
sitemap: false
permalink: /docs/cold-storage/offline-transaction-signing
redirect_to: /cold-storage/offline-transaction-signing
---

View File

@@ -0,0 +1,6 @@
---
layout: redirected
sitemap: false
permalink: /docs/cryptography/asymmetric/edwards25519
redirect_to: /cryptography/asymmetric/edwards25519
---

View File

@@ -0,0 +1,6 @@
---
layout: redirected
sitemap: false
permalink: /docs/cryptography/asymmetric/introduction
redirect_to: /cryptography/asymmetric/introduction
---

View File

@@ -0,0 +1,6 @@
---
layout: redirected
sitemap: false
permalink: /docs/cryptography/asymmetric/key-image
redirect_to: /cryptography/asymmetric/key-image
---

View File

@@ -0,0 +1,6 @@
---
layout: redirected
sitemap: false
permalink: /docs/cryptography/asymmetric/private-key
redirect_to: /cryptography/asymmetric/private-key
---

View File

@@ -0,0 +1,6 @@
---
layout: redirected
sitemap: false
permalink: /docs/cryptography/asymmetric/public-key
redirect_to: /cryptography/asymmetric/public-key
---

View File

@@ -0,0 +1,6 @@
---
layout: redirected
sitemap: false
permalink: /docs/cryptography/base58
redirect_to: /cryptography/base58
---

View File

@@ -0,0 +1,6 @@
---
layout: redirected
sitemap: false
permalink: /docs/cryptography/introduction
redirect_to: /cryptography/introduction
---

View File

@@ -0,0 +1,6 @@
---
layout: redirected
sitemap: false
permalink: /docs/cryptography/keccak-256
redirect_to: /cryptography/keccak-256
---

View File

@@ -0,0 +1,6 @@
---
layout: redirected
sitemap: false
permalink: /docs/cryptography/prng
redirect_to: /cryptography/prng
---

View File

@@ -0,0 +1,6 @@
---
layout: redirected
sitemap: false
permalink: /docs/infrastructure/infrastructure
redirect_to: /infrastructure/infrastructure
---

View File

@@ -0,0 +1,6 @@
---
layout: redirected
sitemap: false
permalink: /docs/infrastructure/monero-pulse
redirect_to: /infrastructure/monero-pulse
---

View File

@@ -0,0 +1,6 @@
---
layout: redirected
sitemap: false
permalink: /docs/infrastructure/networks
redirect_to: /infrastructure/networks
---

View File

@@ -0,0 +1,6 @@
---
layout: redirected
sitemap: false
permalink: /docs/infrastructure/tor-onion-p2p-seed-nodes
redirect_to: /infrastructure/tor-onion-p2p-seed-nodes
---

View File

@@ -0,0 +1,6 @@
---
layout: redirected
sitemap: false
permalink: /docs/interacting/download-monero-binaries
redirect_to: /interacting/download-monero-binaries
---

View File

@@ -0,0 +1,6 @@
---
layout: redirected
sitemap: false
permalink: /docs/interacting/monero-blockchain-export-reference
redirect_to: /interacting/monero-blockchain-export
---

View File

@@ -0,0 +1,6 @@
---
layout: redirected
sitemap: false
permalink: /docs/interacting/monero-blockchain-import-reference
redirect_to: /interacting/monero-blockchain-import
---

View File

@@ -0,0 +1,6 @@
---
layout: redirected
sitemap: false
permalink: /docs/interacting/monero-config-file
redirect_to: /interacting/monero-config-file
---

View File

@@ -0,0 +1,6 @@
---
layout: redirected
sitemap: false
permalink: /docs/interacting/monero-wallet-cli-reference
redirect_to: /interacting/monero-wallet-cli
---

View File

@@ -0,0 +1,6 @@
---
layout: redirected
sitemap: false
permalink: /docs/interacting/monero-wallet-gui-reference
redirect_to: /interacting/monero-wallet-gui
---

View File

@@ -0,0 +1,6 @@
---
layout: redirected
sitemap: false
permalink: /docs/interacting/monero-wallet-rpc-reference
redirect_to: /interacting/monero-wallet-rpc
---

View File

@@ -0,0 +1,6 @@
---
layout: redirected
sitemap: false
permalink: /docs/interacting/monerod-reference
redirect_to: /interacting/monerod
---

View File

@@ -0,0 +1,6 @@
---
layout: redirected
sitemap: false
permalink: /docs/interacting/overview
redirect_to: /interacting/overview
---

View File

@@ -0,0 +1,6 @@
---
layout: redirected
sitemap: false
permalink: /docs/interacting/verify-monero-binaries
redirect_to: /interacting/verify-monero-binaries
---

View File

@@ -0,0 +1,6 @@
---
layout: redirected
sitemap: false
permalink: /docs/multisignature
redirect_to: /multisignature
---

View File

@@ -0,0 +1,6 @@
---
layout: redirected
sitemap: false
permalink: /docs/proof-of-work/cryptonight
redirect_to: /proof-of-work/cryptonight
---

View File

@@ -0,0 +1,6 @@
---
layout: redirected
sitemap: false
permalink: /docs/proof-of-work/pow-in-cryptocurrencies
redirect_to: /proof-of-work/pow-in-cryptocurrencies
---

View File

@@ -0,0 +1,6 @@
---
layout: redirected
sitemap: false
permalink: /docs/proof-of-work/proof-of-work
redirect_to: /proof-of-work/proof-of-work
---

View File

@@ -0,0 +1,6 @@
---
layout: redirected
sitemap: false
permalink: /docs/proof-of-work/random-x
redirect_to: /proof-of-work/random-x
---

View File

@@ -0,0 +1,6 @@
---
layout: redirected
sitemap: false
permalink: /docs/proof-of-work/what-is-pow
redirect_to: /proof-of-work/what-is-pow
---

View File

@@ -0,0 +1,6 @@
---
layout: redirected
sitemap: false
permalink: /docs/public-address/integrated-address
redirect_to: /public-address/integrated-address
---

View File

@@ -0,0 +1,6 @@
---
layout: redirected
sitemap: false
permalink: /docs/public-address/main-address
redirect_to: /public-address/main-address
---

View File

@@ -0,0 +1,6 @@
---
layout: redirected
sitemap: false
permalink: /docs/public-address/standard-address
redirect_to: /public-address/standard-address
---

View File

@@ -0,0 +1,6 @@
---
layout: redirected
sitemap: false
permalink: /docs/public-address/subaddress
redirect_to: /public-address/subaddress
---

View File

@@ -0,0 +1,6 @@
---
layout: redirected
sitemap: false
permalink: /docs/running-node/open-node-tor-onion
redirect_to: /running-node/open-node-tor-onion
---

View File

@@ -0,0 +1,6 @@
---
layout: redirected
sitemap: false
permalink: /docs/technical-specs
redirect_to: /technical-specs
---

View File

@@ -8,7 +8,7 @@ nav_exclude: true
GetMonero.dev organizes basic technical knowledge on Monero in one place. It is a continuation of [the MoneroDocs repo](https://github.com/monerodocs/md).
The goal is to educate and onboard power users faster.
The goal of this website is to supplement the official Monero documentation. This website is maintained by [MAGIC Grants](https://magicgrants.org), a 501(c)(3) public charity.
Common pages include:
@@ -17,4 +17,6 @@ Common pages include:
* [Using monero-wallet-gui](/interacting/monero-wallet-gui-reference)
* [Using monero-wallet-rpc](/interacting/monero-wallet-rpc-reference)
Please submit your feedback and corrections directly on [github](https://github.com/MAGICGrants/getmonero.dev/issues).
Please submit your feedback and corrections directly on [GitHub](https://github.com/MAGICGrants/getmonero.dev/issues).
This website is provided for educational purposes only. Any references to third parties are not endorsements.

View File

@@ -1,5 +1,5 @@
---
title: monero-blockchain-export - Reference
title: monero-blockchain-export
parent: Interacting with Monero
---

View File

@@ -1,5 +1,5 @@
---
title: monero-blockchain-import - Reference
title: monero-blockchain-import
parent: Interacting with Monero
---

View File

@@ -1,5 +1,5 @@
---
title: monero-wallet-cli - Reference
title: monero-wallet-cli
parent: Interacting with Monero
---

View File

@@ -1,5 +1,5 @@
---
title: monero-wallet-gui - Reference
title: monero-wallet-gui
parent: Interacting with Monero
---

View File

@@ -1,5 +1,5 @@
---
title: monero-wallet-rpc - Reference
title: monero-wallet-rpc
parent: Interacting with Monero
---

View File

@@ -1,5 +1,5 @@
---
title: monerod - Reference
title: monerod
parent: Interacting with Monero
---