Skip to content
This repository was archived by the owner on Sep 9, 2024. It is now read-only.

Commit e670833

Browse files
committed
Update name
1 parent 4d3c9db commit e670833

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ An opinionated starter template for a quick start with the following technologie
1616
- PurgeCSS (removes unused CSS-selectors)
1717
- Dark mode & ColorModePicker (Set to "dark mode first")
1818
- PWA (install website as standalone app)
19-
- Netlify CMS (no need for a separate server)
19+
- Static CMS (no need for a separate server)
2020
- Prettier
2121
- Nuxt-content (w/ exensible support for markdown and code-blocks)
2222

@@ -34,13 +34,13 @@ This will setup everything needed for running the CMS:
3434
- A new repository in your GitHub account with the code
3535
- Full Continuous Deployment to Netlify's global CDN network
3636
- Control users and access with Netlify Identity
37-
- Manage content with Netlify CMS and Nuxt-content
37+
- Manage content with Static CMS and Nuxt-content
3838

3939
Once the initial build finishes, you can invite yourself as a user. Go to the Identity tab in your new site, click "Invite" and send yourself an invite. Start with by registering a regular email-account (not OAuth yet!) with a [generated password](https://passwordwolf.com/).
4040

4141
You should be up and running, ready for personalization!
4242

43-
### These extra steps are only necessary if you want to upload large media in Netlify CMS:
43+
### These extra steps are only necessary if you want to upload large media in Static CMS:
4444
This way it doesn't clutter up your repo with large unmanageable files. But *do know* that it is easier to add later than undoing it later.
4545

4646
1. **[Install git-lfs](https://git-lfs.github.com/)** on your computer and remove the `#` in the project's `.gitattributes`
@@ -96,7 +96,7 @@ npm run generate
9696

9797
- Colors are managed in `assets/scss/_vars.scss` & `tailwind.config.js`
9898
- Favicon is generated by [@nuxt/pwa](https://pwa.nuxtjs.org/). You should change the `static/icon.png` to something new, and then match the new filename and source in `nuxt.config.js` under `pwa.icon`. Replace the preview.jpg as well.
99-
- Content is managed mainly in [local Netlify CMS](http://localhost:3000/admin) by going to your `/admin`, in development mode by double-clicking on a post or by hand in `/content`
99+
- Content is managed mainly in [local Static CMS](http://localhost:3000/admin) by going to your `/admin`, in development mode by double-clicking on a post or by hand in `/content`
100100
- Content collections are managed in `static/admin/config.yml`
101101

102102
4. Change font
@@ -131,7 +131,7 @@ Originally based on [Henry Desroches' nuxt-netlify-cms-starter](https://github.c
131131
- > I can’t log in to `/admin` on localhost and use my local git as CMS
132132
- Open up a new terminal and run `npx static-cms-proxy-server`, the login again.
133133

134-
- > I tried logging into/saving in Netlify CMS, but I can't
134+
- > I tried logging into/saving in Static CMS, but I can't
135135
- It may be that you haven't [enabled Netlify Identity](https://app.netlify.com/sites/YOUR_NETLIFY_SITE_SLUG/settings/identity) or [setup the Git Gateway](https://app.netlify.com/sites/YOUR_NETLIFY_SITE_SLUG/settings/identity#services) correctly, [check the docs](https://staticjscms.netlify.app/docs/git-gateway-backend/)
136136

137137
- > I get Netlify emails but can't use them to login etc.

content/blog/2021-03-01-how-to-edit-the-content.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ formatDate(dateString) {
2121
### Steps to take:
2222
1. **Go to admin:** You can navigate to the admin-page by typing in `/admin` after the URL your browser’s omnibox above.
2323

24-
2. **Navigate to Blog:** In blog you can edit existing blog posts like this one, remove it, or create new ones. They’ll be added to a pull request by Netlify CMS that you merge in the next step by saving.
24+
2. **Navigate to Blog:** In blog you can edit existing blog posts like this one, remove it, or create new ones. They’ll be added to a pull request by Static CMS that you merge in the next step by saving.
2525

26-
3. **Save your changes:** After you have edited the content on the site, you need to save. This will trigger Netlify CMS to merge the PR to the main branch (it will show up in your git log).
26+
3. **Save your changes:** After you have edited the content on the site, you need to save. This will trigger Static CMS to merge the PR to the main branch (it will show up in your git log).
2727

2828
4. **Grab a coffee:** After saving, you have to wait for Netlify to build your main branch (which probably takes 2-5 minutes, depending on your setup). If you’re a control-freak, login to Netlify to watch your build run and see when it is published. You can also publish older commits from there."

pages/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<main>
33
<section class="self-center flex flex-col flex-1 items-center justify-center">
4-
<h1 class="title text-center">Nuxt — Tailwind — Netlify CMS</h1>
4+
<h1 class="title text-center">Nuxt — Tailwind — Static CMS</h1>
55
<h2 class="subtitle text-center">Boilerplate</h2>
66
</section>
77

static/admin/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<script src="https://identity.netlify.com/v1/netlify-identity-widget.js"></script>
99
</head>
1010
<body>
11-
<!-- Include the script that builds the page and powers Netlify CMS -->
11+
<!-- Include the script that builds the page and powers Static CMS -->
1212
<script src="https://unpkg.com/@staticcms/core@next/dist/static-cms-core.js"></script>
1313
<script>
1414
CMS.registerPreviewStyle("/admin/admin.css");

0 commit comments

Comments
 (0)