Update index
This commit is contained in:
parent
f8fe21e617
commit
0779395bf8
1 changed files with 11 additions and 8 deletions
19
index.lisp
19
index.lisp
|
@ -28,21 +28,24 @@
|
||||||
|
|
||||||
(defvar *lang* "en")
|
(defvar *lang* "en")
|
||||||
|
|
||||||
(define-section-type with-section-projects (make-grid-class :row 1 :sm 2 :md 3 :g 3) nil)
|
(define-section-type with-section-projects (:row 1 :sm 2 :md 3 :g 3) nil)
|
||||||
|
|
||||||
(defparameter *active-projects*
|
(defparameter *active-projects*
|
||||||
'(("metalisp.sbt"
|
'(("dev.metalisp.sbt"
|
||||||
("Library of Common Lisp Macros to generate HTML." "In Active Development" "Common Lisp")
|
("Library of Common Lisp Macros to generate HTML." "In Active Development" "Common Lisp")
|
||||||
"https://code.metalisp.dev/marcuskammer/dev.metalisp.sbt")
|
"https://code.metalisp.dev/marcuskammer/dev.metalisp.sbt")
|
||||||
("metalisp.survey"
|
("dev.metalisp.survey"
|
||||||
("Create questionnaires and analyze the results." "In Active Development" "Common Lisp")
|
("Create questionnaires and analyze the results." "In Active Development" "Common Lisp")
|
||||||
"https://code.metalisp.dev/marcuskammer/dev.metalisp.survey")
|
"https://code.metalisp.dev/marcuskammer/dev.metalisp.survey")
|
||||||
("metalisp.qmetrics"
|
("dev.metalisp.qmetrics"
|
||||||
("Calculation engine for questionnaires." "In Active Development" "Common Lisp")
|
("Calculation engine for questionnaires." "In Active Development" "Common Lisp")
|
||||||
"https://code.metalisp.dev/marcuskammer/dev.metalisp.qmetrics")
|
"https://code.metalisp.dev/marcuskammer/dev.metalisp.qmetrics")
|
||||||
("metalisp.activitystreams"
|
("dev.metalisp.activitystreams"
|
||||||
("ActivityStreams 2 library" "In Active Development" "Common Lisp")
|
("ActivityStreams 2 library" "In Active Development" "Common Lisp")
|
||||||
"https://code.metalisp.dev/marcuskammer/dev.metalisp.activitystreams")
|
"https://code.metalisp.dev/marcuskammer/dev.metalisp.activitystreams")
|
||||||
|
("dev.metalisp.webdriver"
|
||||||
|
("WebDriver library" "In Active Development" "Common Lisp")
|
||||||
|
"https://code.metalisp.dev/marcuskammer/dev.metalisp.webdriver")
|
||||||
("emacs dot files"
|
("emacs dot files"
|
||||||
("Personal emacs dot files." "In Active Development" "Emacs Lisp")
|
("Personal emacs dot files." "In Active Development" "Emacs Lisp")
|
||||||
"https://code.metalisp.dev/marcuskammer/emacs.d")))
|
"https://code.metalisp.dev/marcuskammer/emacs.d")))
|
||||||
|
@ -50,7 +53,7 @@
|
||||||
(unless (uiop:directory-exists-p #P"public/")
|
(unless (uiop:directory-exists-p #P"public/")
|
||||||
(uiop:ensure-all-directories-exist '(#P"public/")))
|
(uiop:ensure-all-directories-exist '(#P"public/")))
|
||||||
|
|
||||||
(defparameter *brand-name* "metalisp")
|
(defparameter *brand-name* "metalisp.dev")
|
||||||
|
|
||||||
(defparameter *brand-url* "/")
|
(defparameter *brand-url* "/")
|
||||||
|
|
||||||
|
@ -71,8 +74,8 @@
|
||||||
;; Introduction
|
;; Introduction
|
||||||
;; --
|
;; --
|
||||||
(with-section
|
(with-section
|
||||||
(with-title-bar "About metalisp")
|
(with-title-bar "About metalisp.dev")
|
||||||
(:raw (md-file-to-html-string "introduction.md")))
|
(:raw (md-file-to-html-string "about.md")))
|
||||||
;; --
|
;; --
|
||||||
;; News
|
;; News
|
||||||
;; --
|
;; --
|
||||||
|
|
Loading…
Add table
Reference in a new issue