summary refs log tree commit diff
path: root/build-aux
diff options
context:
space:
mode:
Diffstat (limited to 'build-aux')
-rw-r--r--build-aux/build-home-page.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/build-aux/build-home-page.el b/build-aux/build-home-page.el
index 130afee..b971304 100644
--- a/build-aux/build-home-page.el
+++ b/build-aux/build-home-page.el
@@ -35,5 +35,9 @@
       org-html-postamble nil)
 
 (defun build-website ()
-  (with-current-buffer (find-file "README.org")
+  (with-temp-buffer
+    (insert-file-contents "README.org")
+    (search-forward "* Contributing\n\n")
+    (beginning-of-line)
+    (insert "ccwl is developed on [[https://github.com/arunisaac/ccwl][GitHub]]. ")
     (org-export-to-file 'html "website/index.html")))