Skip to content

Commit

Permalink
Merge branch 'master' into 0xlucca/update-tutorial-section
Browse files Browse the repository at this point in the history
  • Loading branch information
0xLucca committed Dec 17, 2024
2 parents 9b5a4ae + 5f5d209 commit 76308fb
Show file tree
Hide file tree
Showing 6 changed files with 53 additions and 3 deletions.
10 changes: 10 additions & 0 deletions cookie-policy.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: Cookie Policy
description: This cookie policy explains how we use cookies to enhance your browsing experience, improve functionality, and ensure secure interactions.
hide:
- toc
- feedback
- navigation
---

--8<-- 'https://raw.githubusercontent.com/papermoonio/polkadot-mkdocs/refs/heads/main/policies/cookie-policy.md'
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,6 @@ With the pallet successfully added and configured, the runtime is ready to be co

Learn how to efficiently test pallets in the Polkadot SDK, ensuring the reliability and security of your pallets operations.

[:octicons-arrow-right-24: Reference](/develop/parachains/customize-parachain/pallet-testing/)
[:octicons-arrow-right-24: Reference](/develop/parachains/testing)

</div>
4 changes: 2 additions & 2 deletions develop/parachains/intro-polkadot-sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ graph LR
```

1. [**Install the Polkadot SDK**](/develop/parachains/install-polkadot-sdk/) - set up your development environment with all necessary dependencies and tools
2. [**Build the chain**](/develop/parachains/get-started/build-custom-parachains/) - learn how to create and customize your blockchain's runtime, configure pallets, and implement your chain's unique features
3. [**Deploy the chain**](/develop/parachains/get-started/deploy-parachain-to-polkadot/) - follow the steps to launch your blockchain, whether as a standalone network or as a parachain on Polkadot
2. [**Build the chain**](/develop/parachains/customize-parachain) - learn how to create and customize your blockchain's runtime, configure pallets, and implement your chain's unique features
3. [**Deploy the chain**](/develop/parachains/deployment) - follow the steps to launch your blockchain, whether as a standalone network or as a parachain on Polkadot

Each stage is covered in detail in its respective guide, walking you through the process from initial setup to final deployment.
20 changes: 20 additions & 0 deletions js/fix-created-date.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
document.addEventListener('DOMContentLoaded', function () {
const dateLabels = document.querySelectorAll(
'.git-revision-date-localized-plugin-date'
);

// Only make modifications on pages with dates
if (dateLabels.length > 0) {
const lastUpdate = dateLabels[0].innerHTML;
const created = dateLabels[1].innerHTML;

const lastUpdateDate = new Date(lastUpdate);
const createdDate = new Date(created);

// If the created date is after the last updated date,
// default to using the last updated date
if (lastUpdateDate < createdDate) {
dateLabels[1].innerHTML = lastUpdate;
}
}
});
10 changes: 10 additions & 0 deletions privacy-policy.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: Privacy Policy
description: This privacy policy explains in particular how, for which purposes, and to what extent your Personal Data is collected and processed by us through the Website.
hide:
- toc
- feedback
- navigation
---

--8<-- 'https://raw.githubusercontent.com/papermoonio/polkadot-mkdocs/refs/heads/main/policies/privacy-policy.md'
10 changes: 10 additions & 0 deletions terms-of-use.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: Terms of Use
description: Discover the terms and conditions governing your use of our website, outlining your rights, responsibilities, and important legal details.
hide:
- toc
- feedback
- navigation
---

--8<-- 'https://raw.githubusercontent.com/papermoonio/polkadot-mkdocs/refs/heads/main/policies/terms-of-use.md'

0 comments on commit 76308fb

Please sign in to comment.