summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavel Grunt <pgrunt@redhat.com>2016-02-24 11:24:23 +0100
committerPavel Grunt <pgrunt@redhat.com>2016-02-24 11:24:48 +0100
commit93763ff4e37f3b19a978b3f0bc2b632e2fdf735c (patch)
tree6d8a26d4eeeb71cda2313ea03a67a39022d8d0e8
parent71adaeff107cfc1a1b08ec39b3125aeba498f1c3 (diff)
Change home.html to index.html
-rw-r--r--Makefile2
-rw-r--r--content/pages/home.rst2
-rw-r--r--pelicanconf.py2
-rw-r--r--publishconf.py2
4 files changed, 3 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 0e12f15..e71a56e 100644
--- a/Makefile
+++ b/Makefile
@@ -63,7 +63,6 @@ help:
html:
$(PELICAN) $(INPUTDIR) -o $(OUTPUTDIR) -s $(CONFFILE) $(PELICANOPTS)
- ln -srf $(OUTPUTDIR)/home.html $(OUTPUTDIR)/index.html
cp -r $(BASEDIR)/content-extra/* $(OUTPUTDIR)
clean:
@@ -100,7 +99,6 @@ stopserver:
publish:
$(PELICAN) $(INPUTDIR) -o $(OUTPUTDIR) -s $(PUBLISHCONF) $(PELICANOPTS)
- ln -srf $(OUTPUTDIR)/home.html $(OUTPUTDIR)/index.html
cp -r $(BASEDIR)/content-extra/* $(OUTPUTDIR)
ssh_upload: publish
diff --git a/content/pages/home.rst b/content/pages/home.rst
index c3e97d3..bf0ee69 100644
--- a/content/pages/home.rst
+++ b/content/pages/home.rst
@@ -1,7 +1,7 @@
Home
###############################################################################
-:slug: home
+:slug: index
:modified: 2016-01-18 13:20
The SPICE project aims to provide a complete open source solution for remote
diff --git a/pelicanconf.py b/pelicanconf.py
index db5909e..fb50932 100644
--- a/pelicanconf.py
+++ b/pelicanconf.py
@@ -42,7 +42,7 @@ DEFAULT_PAGINATION = False
FOOTER_IMAGE_PATH = SITEURL + '/theme/images/icons/et_logo.png'
MENUITEMS = [
- ("HOME", "home.html"),
+ ("HOME", "index.html"),
("FAQ", "faq.html"),
("Features", "features.html"),
("Documentation", "documentation.html"),
diff --git a/publishconf.py b/publishconf.py
index fb6deb4..4eea760 100644
--- a/publishconf.py
+++ b/publishconf.py
@@ -42,7 +42,7 @@ DEFAULT_PAGINATION = False
FOOTER_IMAGE_PATH = SITEURL + '/theme/images/icons/et_logo.png'
MENUITEMS = [
- ("HOME", "home.html"),
+ ("HOME", "index.html"),
("FAQ", "faq.html"),
("Features", "features.html"),
("Documentation", "documentation.html"),