-
Notifications
You must be signed in to change notification settings - Fork 22.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add glossary for SSG * Update learning * Update files/en-us/glossary/ssg/index.md * Update index.md * Update files/en-us/glossary/ssg/index.md * K * Update files/en-us/glossary/ssg/index.md --------- Co-authored-by: Hamish Willee <[email protected]>
- Loading branch information
1 parent
638277d
commit 1603e79
Showing
2 changed files
with
24 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
title: Static site generator (SSG) | ||
slug: Glossary/SSG | ||
page-type: glossary-definition | ||
--- | ||
|
||
{{GlossarySidebar}} | ||
|
||
A **static site generator** (SSG) is a software used to generate _static_ websites. A static website is comprised of {{glossary("HTML")}}, {{glossary("CSS")}}, and {{glossary("JavaScript")}} files. Most importantly static sites do not have [server-side logic](/en-US/docs/Learn/Server-side), so for any given URL, all users will receive the same content. Authors write content in any form accepted by the generator, such as Markdown, reStructuredText, HTML, (and sometimes even [React](/en-US/docs/Learn/Tools_and_testing/Client-side_JavaScript_frameworks/React_getting_started), and so on), and the generator compiles them into a set of optimized static files that can be rendered by the browser. | ||
|
||
Static sites are commonly used for blogs, documentation, and other content-driven websites, which don't have data that needs to be fetched or generated server-side. They are fast, secure, and easy to deploy, because they can be served from a {{glossary("CDN")}}. | ||
|
||
## See also | ||
|
||
- [Introduction to client-side frameworks > static site generators](/en-US/docs/Learn/Tools_and_testing/Client-side_JavaScript_frameworks/Introduction#static_site_generators) | ||
- [Static site generator](https://en.wikipedia.org/wiki/Static_site_generator) on Wikipedia | ||
- [Wordpress](https://wordpress.com/) | ||
- [Docusaurus](https://docusaurus.io/) | ||
- [Jekyll](https://jekyllrb.com/) | ||
- [Astro](https://astro.build/) | ||
- [VitePress](https://vitepress.dev/) | ||
- [Eleventy](https://www.11ty.dev/) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters