diff --git a/docs/index.lisp b/docs/index.lisp index ead3e11..782d086 100644 --- a/docs/index.lisp +++ b/docs/index.lisp @@ -29,6 +29,8 @@ #:@roadmap) (:import-from #:staticl-docs/contribution #:@contribution) + (:import-from #:staticl-docs/sites + #:@sites) (:export #:@index #:@readme #:@changelog)) @@ -51,6 +53,7 @@ "40A" "API" "JS" + "PR" "CSS" "UTF-8" "RSS" @@ -112,6 +115,7 @@ (@installation section) (@introduction section) (@roadmap section) + (@sites section) (@contribution section)) diff --git a/docs/sites.lisp b/docs/sites.lisp new file mode 100644 index 0000000..1c8e3f0 --- /dev/null +++ b/docs/sites.lisp @@ -0,0 +1,21 @@ +(uiop:define-package #:staticl-docs/sites + (:use #:cl) + (:import-from #:named-readtables + #:in-readtable) + (:import-from #:40ants-doc + #:defsection) + (:import-from #:pythonic-string-reader + #:pythonic-string-syntax)) +(in-package #:staticl-docs/sites) + + +(in-readtable pythonic-string-syntax) + +(defsection @sites (:title "Sites Built With StatiCL") + """ +Here is a list of sites which use `StatiCL` to generate HTML: + +* https://40ants.com/ ([sources](https://github.com/40ants/40ants.github.com)). + +Feel free to create PR to add your site here. It will be intresting to share configurations, themes and plugins! +""")