Skip to content

Commit

Permalink
add terms, depersonalize
Browse files Browse the repository at this point in the history
  • Loading branch information
Reed Nelson committed Aug 12, 2023
1 parent 8d03a92 commit 1a46897
Show file tree
Hide file tree
Showing 14 changed files with 115 additions and 45 deletions.
3 changes: 1 addition & 2 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2023 Reed Nelson
Copyright (c) 2023 Jane Doe

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand All @@ -19,4 +19,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "pages",
"version": "1.4.1",
"description": "Template.",
"author": "reednel",
"author": "Jane Doe",
"license": "MIT",
"packageManager": "[email protected]",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion public/CNAME
Original file line number Diff line number Diff line change
@@ -1 +1 @@
www.reednel.com
www.janedoe.com
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Pages

[![GitHub License](https://img.shields.io/github/license/reednel/pages?color=red)](https://github.com/reednel/pages/blob/main/LICENCE) [![Repo Size](https://img.shields.io/github/repo-size/reednel/pages)](https://github.com/reednel/pages) [![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/reednel/pages/deploy.yml?color=limegreen)](https://github.com/reednel/pages/deployments) [![Website](https://img.shields.io/website?up_message=online&up_color=limegreen&down_message=offline&down_color=yellow&url=https%3A%2F%2Freednel.com%2F)](https://reednel.com/)
[![GitHub License](https://img.shields.io/github/license/reednel/pages?color=red)](https://github.com/reednel/pages/blob/main/LICENSE) [![Repo Size](https://img.shields.io/github/repo-size/reednel/pages)](https://github.com/reednel/pages) [![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/reednel/pages/deploy.yml?color=limegreen)](https://github.com/reednel/pages/deployments) [![Website](https://img.shields.io/website?up_message=online&up_color=limegreen&down_message=offline&down_color=yellow&url=https%3A%2F%2Freednel.com%2F)](https://reednel.com/)

Reed Nelson's personal website.

Expand All @@ -18,7 +18,7 @@ Build: `npm run dev`

## License

Manual is licensed under the [MIT License](LICENSE).
Pages is licensed under the [MIT License](LICENSE).

## Acknowledgments

Expand Down
2 changes: 1 addition & 1 deletion src/config/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},

"metadata": {
"meta_author": "reednel",
"meta_author": "Jane Doe",
"meta_image": "/images/og-image.png",
"meta_description": "astro and tailwind boilerplate"
}
Expand Down
4 changes: 2 additions & 2 deletions src/config/menu.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
"url": "/elements"
},
{
"name": "Privacy Policy",
"url": "/privacy-policy"
"name": "Terms & Conditions",
"url": "/terms"
}
]
}
2 changes: 1 addition & 1 deletion src/content/about/-index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: "Hey, I am John Doe!"
title: "Hey, I am Jane Doe!"
meta_title: "About"
description: "this is meta description"
image: "/images/avatar.png"
Expand Down
4 changes: 2 additions & 2 deletions src/content/authors/john-doe.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: John Doe
email: johndoe@email.com
title: Jane Doe
email: janedoe@email.com
image: "/images/avatar.png"
description: this is meta description
social:
Expand Down
2 changes: 1 addition & 1 deletion src/content/blog/post-1.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: "this is meta description"
date: 2022-04-04T05:00:00Z
image: "/images/image-placeholder.png"
categories: ["Application", "Data"]
author: "John Doe"
author: "Jane Doe"
tags: ["nextjs", "tailwind"]
draft: false
---
Expand Down
2 changes: 1 addition & 1 deletion src/content/blog/post-3.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: "this is meta description"
date: 2022-04-04T05:00:00Z
image: "/images/image-placeholder.png"
categories: ["Software"]
author: "John Doe"
author: "Jane Doe"
tags: ["software", "tailwind"]
draft: false
---
Expand Down
2 changes: 1 addition & 1 deletion src/content/blog/post-4.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: "this is meta description"
date: 2022-04-04T05:00:00Z
image: "/images/image-placeholder.png"
categories: ["Architecture"]
author: "John Doe"
author: "Jane Doe"
tags: ["silicon", "technology"]
draft: false
---
Expand Down
30 changes: 0 additions & 30 deletions src/content/pages/privacy-policy.md

This file was deleted.

74 changes: 74 additions & 0 deletions src/content/terms/-index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
---
title: "Terms & Conditions"
meta_title: "Terms & Conditions"
draft: false
---

## Copyright

© 2023 Jane Doe. All rights reserved.

## Reuse

### Source Code

The source code for janedoe.com is protected under the MIT License. In short, you can do as you see fit, so long as you include the original copyright notice in any copy of the software.

```md
The MIT License (MIT)

Copyright (c) 2023 Jane Doe

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
```

### Content

It is not permitted to mirror or re-publish the content of this website. That includes, for example, the words and images displayed on it. Write your own blog.

## Terms

1. This site includes matters of opinion and speculation. All material is provided for informational purposes only.
2. While I try to keep materials up-to-date and accurate, the currency, accuracy, and completeness of my work can not be guaranteed.
3. You are responsible for whatever happens as a result of you reading or using materials from this site.
4. These terms and conditions may be amended at any time in the future.

## Attributions

This source code is derivative of [pages](https://github.com/reednel/pages) by [Reed Nelson](https://github.com/reednel), which uses the license below.

```md
The MIT License (MIT)

Copyright (c) 2023 Reed Nelson

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
```
27 changes: 27 additions & 0 deletions src/pages/terms.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
import Base from "@/layouts/Base.astro";
import PageHeader from "@/partials/PageHeader.astro";
import { getEntryBySlug } from "astro:content";
const terms = await getEntryBySlug("terms", "-index");
const { Content } = await terms.render();
const { title, meta_title } = terms.data;
---

<Base
title={title}
meta_title={meta_title}
>
<PageHeader title={title} />
<section class="section-sm">
<div class="container">
<div class="row justify-center">
<div class="col-10">
<div class="content">
<Content />
</div>
</div>
</div>
</div>
</section>
</Base>

0 comments on commit 1a46897

Please sign in to comment.