From 24fc4d7d14d7efcd1cb21eb419705fe39d78c8b8 Mon Sep 17 00:00:00 2001 From: Alexander Artemenko Date: Fri, 10 May 2024 00:20:24 +0300 Subject: [PATCH] Added a list of sites. --- docs/index.lisp | 4 ++++ docs/sites.lisp | 21 +++++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 docs/sites.lisp 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! +""")