diff options
author | Alyssa Rosenzweig <alyssa@rosenzweig.io> | 2017-05-13 08:19:15 -0700 |
---|---|---|
committer | Alyssa Rosenzweig <alyssa@rosenzweig.io> | 2017-05-13 08:19:15 -0700 |
commit | 731e383e52f56d6bc84df340982348851081c3a4 (patch) | |
tree | fe2241c93e623d4952d749f1df2f716ba11d9a05 | |
parent | 1fab40813811e131b93a4874c36609dd95e22b7d (diff) | |
download | librebootfr-731e383e52f56d6bc84df340982348851081c3a4.tar.gz librebootfr-731e383e52f56d6bc84df340982348851081c3a4.zip |
Footer separate file
-rw-r--r-- | www/footer.md | 7 | ||||
-rwxr-xr-x | www/publish.sh | 8 |
2 files changed, 8 insertions, 7 deletions
diff --git a/www/footer.md b/www/footer.md new file mode 100644 index 00000000..dfddfd75 --- /dev/null +++ b/www/footer.md @@ -0,0 +1,7 @@ + +[License](/docs/fdl-1.3.md) -- +[Template](/license.md) -- +[Authors](/contrib.md) -- +[Conduct Guidelines](/conduct.md) -- +[Management Guidelines](/management.md) -- +[Peers Community](https://peers.community/) -- diff --git a/www/publish.sh b/www/publish.sh index 7f68d5ae..e75ec332 100755 --- a/www/publish.sh +++ b/www/publish.sh @@ -42,13 +42,7 @@ fi if [ "${FILE}" != "./docs/fdl-1.3" ] && [ "${FILE}" != "./conduct" ]; then - echo "" >> temp.md - printf "[License](/docs/fdl-1.3.md) --\n" >> temp.md - printf "[Template](/license.md) --\n" >> temp.md - printf "[Authors](/contrib.md) --\n" >> temp.md - printf "[Conduct Guidelines](/conduct.md) --\n" >> temp.md - printf "[Management Guidelines](/management.md) --\n" >> temp.md - printf "[Peers Community](https://peers.community/) \n" >> temp.md + cat footer.md >> temp.md fi # change out .md -> .html |