-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GH-2333 readme file specifically for website editing
- Loading branch information
1 parent
8b0c6cc
commit d027e3f
Showing
1 changed file
with
25 additions
and
0 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,25 @@ | ||
# Eclipse RDF4J Hugo website | ||
|
||
This directory contains the source of the official RDF4J project website at | ||
https://rdf4j.org/, including all technical documentation. | ||
|
||
The RDF4J project website is generated using the [Hugo](https://gohugo.io/) static website generator, and uses the [Eclipse Foundation Solstice Theme](https://github.com/EclipseFdn/hugo-solstice-theme). | ||
|
||
The solstice theme is included as a git submodule. To check out a local copy, run | ||
|
||
git submodule --init --recursive | ||
|
||
You should only need to do this once after cloning the rdf4j repository. | ||
|
||
Most website content can be found in the `content/` directory, as (Goldmark) | ||
Markdown files. We allow inclusion of raw html as well, but please use this | ||
sparingly: we prefer use of markdown to make future maintenance as easy as | ||
possible. | ||
|
||
To generate a site locally for easy editing/debugging, simply execute | ||
|
||
hugo server --disableFastRender | ||
|
||
A local copy of the website will be accessible on http://localhost:1313/. You | ||
can edit the content using your text editor of choice, the hugo server will | ||
automatically re-render the pages you edit as you go. |