site: rename to website.
First this is more consistent as we already have a website-build directory. Then it is also useful for migrating to haunt as 'haunt build' puts the generated website in a 'site/' directory, so without this rename, when the migration would be complete we'd have site/site instead of website/site. Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
This commit is contained in:
parent
85a6444802
commit
1ee52ec0df
|
@ -27,11 +27,11 @@
|
||||||
/release/
|
/release/
|
||||||
/resources/coreboot/*/seen
|
/resources/coreboot/*/seen
|
||||||
/seabios/
|
/seabios/
|
||||||
/site/news/index*
|
|
||||||
/site/sitemap.md
|
|
||||||
/tmp/
|
/tmp/
|
||||||
/version
|
/version
|
||||||
/versiondate
|
/versiondate
|
||||||
|
/website/news/index*
|
||||||
|
/website/sitemap.md
|
||||||
Makefile
|
Makefile
|
||||||
Makefile.in
|
Makefile.in
|
||||||
aclocal.m4
|
aclocal.m4
|
||||||
|
|
2
site.cfg
2
site.cfg
|
@ -4,7 +4,7 @@
|
||||||
# under the terms of the GNU Free Documentation License, Version 1.3
|
# under the terms of the GNU Free Documentation License, Version 1.3
|
||||||
# or any later version published by the Free Software Foundation;
|
# or any later version published by the Free Software Foundation;
|
||||||
# with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
|
# with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
|
||||||
# A copy of the license is included in the site/COPYING directory.
|
# A copy of the license is included in the website/COPYING directory.
|
||||||
|
|
||||||
TITLE="GNU Boot"
|
TITLE="GNU Boot"
|
||||||
CSS="/software/gnuboot/web/global.css"
|
CSS="/software/gnuboot/web/global.css"
|
||||||
|
|
|
@ -97,7 +97,7 @@ copy_website()
|
||||||
rm -rf "${dst_path}"
|
rm -rf "${dst_path}"
|
||||||
mkdir -p "${dst_path}"
|
mkdir -p "${dst_path}"
|
||||||
cp "../site.cfg" "${dst_path}"
|
cp "../site.cfg" "${dst_path}"
|
||||||
cp -a "../site/" "${dst_path}"
|
cp -a "../website/" "${dst_path}/site"
|
||||||
}
|
}
|
||||||
|
|
||||||
help_missing_arg()
|
help_missing_arg()
|
||||||
|
|
|
@ -96,7 +96,7 @@ instructions](docs/build/).
|
||||||
Website
|
Website
|
||||||
-------
|
-------
|
||||||
|
|
||||||
The website is in the GNU Boot source code inside the site/ directory.
|
The website is in the GNU Boot source code inside the website/ directory.
|
||||||
|
|
||||||
It is currently written in Markdown, specifically the Pandoc version
|
It is currently written in Markdown, specifically the Pandoc version
|
||||||
of it and the static HTML pages are generated with
|
of it and the static HTML pages are generated with
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue