a8d8d0e805bc550786aef8570670c5d16ffb65ee
mspeir
  Sun Apr 28 18:32:11 2024 -0700
updated index, added gb101.md stub, added page_template.md refs #30335

diff --git docs/makefile docs/makefile
index 305d594..d018093 100644
--- docs/makefile
+++ docs/makefile
@@ -1,18 +1,22 @@
 kentSrc = ..
 include ../src/inc/common.mk
 
 GIT = git
 GITUP = ${GIT} pull
 
 user:
 	${MAKE} doInstall destDir=${DOCUMENTROOT}-${USER}
 
 doInstall:
 	mkdir -p ${destDir}/docs/
 	pandoc --ascii -f markdown-smart -t html5 -o ${destDir}/docs/index.html index.md --template staticPage.html -t staticPage.lua
+	pandoc --ascii -f markdown-smart -t html5 -o ${destDir}/docs/gb101.html gb101.md --template staticPage.html -t staticPage.lua
+	pandoc --ascii -f markdown-smart -t html5 -o ${destDir}/docs/page_template.html page_template.md --template staticPage.html -t staticPage.lua
 	chmod a+x ${destDir}/docs/index.html
+	chmod a+x ${destDir}/docs/gb101.html
+	chmod a+x ${destDir}/docs/page_template.html
 
 testPandoc:
 	@printf "Test the following path and commands look ok\n"
 	@printf "pandoc path: %s\n" "`which pandoc`"
 	@printf "pandoc --ascii -f markdown-smart -t html5 index.md --template staticPage.html -t staticPage.lua\n" "${DOCUMENTROOT}/"