diff --git a/README.md b/README.md index 9f50e11..272a4ac 100644 --- a/README.md +++ b/README.md @@ -1,28 +1,28 @@ # Table of Contents -1. [Cl-Sbt](#org625f6f0) - 1. [Usage](#org905a16a) - 1. [Defining a Card](#orgca7c75b) - 2. [Defining a Dropdown](#org9888757) - 2. [Installation](#orgb5d14a1) - 3. [Author](#org0e6a662) - 4. [Copyright](#orge69a71c) +1. [Cl-Sbt](#org6b7b2d5) + 1. [Usage](#org73362c7) + 1. [Defining a Card](#org5fffccc) + 2. [Defining a Dropdown](#orgfcfa498) + 2. [Installation](#org1a9e1bc) + 3. [Author](#orgfe8f77a) + 4. [Copyright](#orga9219ed) - + # Cl-Sbt Common Lisp Spinneret Bootstrap Templates - + ## Usage - + ### Defining a Card @@ -35,8 +35,19 @@ The following code demonstrates how to define a card using the card macro. (cl-sbt-card:text "Some quick example text to build on the card title and make up the bulk of the card's content.") (cl-sbt-card:link (:href "#") "Card link"))) +
+
+
Card title
+
Card subtitle
+

Some quick example text to build on the card title and make up + the bulk of the card's content. + Card link +

+
- + + ### Defining a Dropdown @@ -49,8 +60,19 @@ macro. (cl-sbt-dropdown:item "Another action") (cl-sbt-dropdown:item "Something else here"))) + - + + ## Installation @@ -59,14 +81,14 @@ macro. (ql:quickload :cl-sbt) - + ## Author - Marcus Kammer (marcus.kammer@mailbox.org) - + ## Copyright diff --git a/README.org b/README.org index 1aa83ce..d41e783 100644 --- a/README.org +++ b/README.org @@ -8,7 +8,7 @@ Common Lisp Spinneret Bootstrap Templates The following code demonstrates how to define a card using the card macro. -#+begin_src lisp :results output html +#+begin_src lisp :results output html :exports both (cl-sbt-card:card (cl-sbt-card:body (cl-sbt-card:title "Card title") @@ -36,7 +36,7 @@ The following code demonstrates how to define a card using the card macro. The following code demonstrates how to define a dropdown using the dropdown macro. -#+begin_src lisp :results output html +#+begin_src lisp :results output html :exports both (cl-sbt-dropdown:dropdown (:title "Dropdown button") (cl-sbt-dropdown:menu (cl-sbt-dropdown:item "Action")