You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 9, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ An opinionated starter template for a quick start with the following technologie
16
16
- PurgeCSS (removes unused CSS-selectors)
17
17
- Dark mode & ColorModePicker (Set to "dark mode first")
18
18
- PWA (install website as standalone app)
19
-
-Netlify CMS (no need for a separate server)
19
+
-Static CMS (no need for a separate server)
20
20
- Prettier
21
21
- Nuxt-content (w/ exensible support for markdown and code-blocks)
22
22
@@ -34,13 +34,13 @@ This will setup everything needed for running the CMS:
34
34
- A new repository in your GitHub account with the code
35
35
- Full Continuous Deployment to Netlify's global CDN network
36
36
- 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
38
38
39
39
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/).
40
40
41
41
You should be up and running, ready for personalization!
42
42
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:
44
44
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.
45
45
46
46
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
96
96
97
97
- Colors are managed in `assets/scss/_vars.scss` & `tailwind.config.js`
98
98
- 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`
100
100
- Content collections are managed in `static/admin/config.yml`
101
101
102
102
4. Change font
@@ -131,7 +131,7 @@ Originally based on [Henry Desroches' nuxt-netlify-cms-starter](https://github.c
131
131
-> I can’t log in to `/admin` on localhost and use my local git as CMS
132
132
- Open up a new terminal and run `npx static-cms-proxy-server`, the login again.
133
133
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
135
135
- 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/)
136
136
137
137
-> I get Netlify emails but can't use them to login etc.
Copy file name to clipboardExpand all lines: content/blog/2021-03-01-how-to-edit-the-content.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -21,8 +21,8 @@ formatDate(dateString) {
21
21
### Steps to take:
22
22
1.**Go to admin:** You can navigate to the admin-page by typing in `/admin` after the URL your browser’s omnibox above.
23
23
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.
25
25
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).
27
27
28
28
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."
0 commit comments