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

Update docs to reference saberland/saber repo #530

Merged
merged 1 commit into from
Oct 31, 2019
Merged
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Issues on Saber can be funded by anyone and the money will be distributed to con

Saber wouldn't be what it is today without the contributions from these awesome people:

[![contributors](https://opencollective.com/saber/contributors.svg?button=false&width=890)](https://github.com/egoist/saber/graphs/contributors)
[![contributors](https://opencollective.com/saber/contributors.svg?button=false&width=890)](https://github.com/saberland/saber/graphs/contributors)

---

Expand Down
14 changes: 7 additions & 7 deletions website/pages/_posts/saber/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ It's been two months already since the first release of Saber, but this is the f

<img src="@/images/simple-index-md-page.png" alt="preview">

Saber is a tool for building static websites with modern web techs like webpack, Babel and Vue. Getting started developing an application of any size is as easy as executing `saber`.
Saber is a tool for building static websites with modern web techs like webpack, Babel and Vue. Getting started developing an application of any size is as easy as executing `saber`.

To start using it, run inside a new directory with a `package.json`:

Expand Down Expand Up @@ -79,13 +79,13 @@ No configuration unless it's needed. Automatic hot-code reloading, error reporti

## Blogging, Layouts & Theming

Just like Hexo, Saber uses `pages/_posts` folder for blog posts. If you populate a page at `pages/_posts/hello-world.md`, it will automatically map to `/posts/hello-world.html`.
Just like Hexo, Saber uses `pages/_posts` folder for blog posts. If you populate a page at `pages/_posts/hello-world.md`, it will automatically map to `/posts/hello-world.html`.

Saber has all the plugins that're required for building a blog:
Saber has all the plugins that're required for building a blog:

- If you want to display post list on your homepage, you can use [saber-plugin-query-post](https://github.com/egoist/saber/tree/master/packages/saber-plugin-query-posts) which also automatically generates _tag_ and _category_ pages.
- If you want to generate RSS feed, use [saber-plugin-feed](https://github.com/egoist/saber/tree/master/packages/saber-plugin-feed).
- Find more at [awesome-saber](https://github.com/egoist/awesome-saber) or build your own!
- If you want to display post list on your homepage, you can use [saber-plugin-query-post](https://github.com/saberland/saber/tree/master/packages/saber-plugin-query-posts) which also automatically generates _tag_ and _category_ pages.
- If you want to generate RSS feed, use [saber-plugin-feed](https://github.com/saberland/saber/tree/master/packages/saber-plugin-feed).
- Find more at [awesome-saber](https://github.com/saberland/awesome-saber) or build your own!

Check out the tutorial [Intro the Saber](../../tutorial/tutorial.md) to learn how to build a simple blog, use layouts, and share your layouts as a theme.

Expand All @@ -103,4 +103,4 @@ For local development performance, Saber offers the Lazy Page Compilation mode w

---

In closing, this is my solution to building static websites with modern techs, if you like my work, please consider contributing to the project on [GitHub](https://github.com/egoist/saber), or supporting me on [Patreon](https://patreon.com/egoist)!
In closing, this is my solution to building static websites with modern techs, if you like my work, please consider contributing to the project on [GitHub](https://github.com/saberland/saber), or supporting me on [Patreon](https://patreon.com/egoist)!
2 changes: 1 addition & 1 deletion website/pages/docs/deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ With this setup Netlify will build and deploy when you push to git or open a pul
2. Pick your Git hosting service and select your repository
3. Click `Build your site`

Since Netlify automatically rewrites routes like `/foo` to `/foo.html` when `/foo` doesn't exist, you may need [saber-plugin-netlify-redirect](https://github.com/egoist/saber/tree/master/packages/saber-plugin-netlify-redirect) to fix this.
Since Netlify automatically rewrites routes like `/foo` to `/foo.html` when `/foo` doesn't exist, you may need [saber-plugin-netlify-redirect](https://github.com/saberland/saber/tree/master/packages/saber-plugin-netlify-redirect) to fix this.

## [GitHub Pages](https://pages.github.com/)

Expand Down
2 changes: 1 addition & 1 deletion website/pages/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Saber is a static website generator, it is like Hexo but, you can use Vue, React

## Disclaimer

A word of caution: Saber is currently in beta stage. We encourage brave early adopters, it works but expect bugs large and small. We do maintain a [changelog](https://github.com/egoist/saber/releases) for breaking changes, new features and bug fixes though.
A word of caution: Saber is currently in beta stage. We encourage brave early adopters, it works but expect bugs large and small. We do maintain a [changelog](https://github.com/saberland/saber/releases) for breaking changes, new features and bug fixes though.

## Comparisons

Expand Down
2 changes: 1 addition & 1 deletion website/src/components/SiteNav.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
</a>
</li>
<li class="nav-item">
<a href="https://github.com/egoist/saber" target="_blank" class="github-link">
<a href="https://github.com/saberland/saber" target="_blank" class="github-link">
<svg
aria-hidden="true"
focusable="false"
Expand Down
2 changes: 1 addition & 1 deletion website/src/components/Wrap.vue
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export default {

editLink() {
const { slug, type } = this.page
return `https://github.com/egoist/saber/blob/master/website/pages/${
return `https://github.com/saberland/saber/blob/master/website/pages/${
type === 'post' ? '_posts/' : ''
}${slug}.md`
}
Expand Down