2024-03-29 14:05:02 +01:00
|
|
|
|
|
|
|
# Table of Contents
|
|
|
|
|
2024-10-06 10:11:30 +02:00
|
|
|
1. [dev.metalisp.sbt](#org34e2de9)
|
|
|
|
1. [Introduction](#org0598841)
|
|
|
|
2. [Installation](#org0102225)
|
|
|
|
1. [Load library](#org3c2e2b5)
|
|
|
|
2. [Run tests](#org9fb428e)
|
|
|
|
3. [Issue Tracker](#org547939f)
|
|
|
|
4. [Mailing list](#orga4368de)
|
|
|
|
5. [XMPP (Jabber) Chat](#org9528711)
|
|
|
|
6. [RSS Feed](#org7c3ae8d)
|
|
|
|
7. [Similar Libraries](#org7c30993)
|
|
|
|
8. [Author](#org6fb104a)
|
|
|
|
9. [Copyright](#org6ee8fc7)
|
|
|
|
|
|
|
|
|
|
|
|
<a id="org34e2de9"></a>
|
2024-03-29 14:05:02 +01:00
|
|
|
|
|
|
|
# dev.metalisp.sbt
|
|
|
|
|
|
|
|
|
2024-10-06 10:11:30 +02:00
|
|
|
<a id="org0598841"></a>
|
2024-03-29 14:05:02 +01:00
|
|
|
|
|
|
|
## Introduction
|
|
|
|
|
|
|
|
A Common Lisp library for generating Bootstrap-based HTML markup. It provides
|
|
|
|
macros to easily create Bootstrap components such as accordions, alerts,
|
|
|
|
badges, buttons, cards, dropdowns, headers, list groups, navbars, nav-tabs,
|
|
|
|
pagination, and tables. This library is dependent on the Spinneret library for
|
|
|
|
HTML generation.
|
|
|
|
|
|
|
|
The following components are available as packages:
|
|
|
|
|
|
|
|
- **accordion:** This package provides macros for generating Bootstrap Accordion
|
|
|
|
components. Accordions are collapsible lists of items, each of which can be
|
|
|
|
“expanded” or “collapsed” to reveal or hide content.
|
|
|
|
|
|
|
|
- **alert:** This package offers macros for creating Bootstrap Alert components.
|
|
|
|
Alerts are used to provide user feedback, usually in response to user
|
|
|
|
interactions, such as form validation or actions.
|
|
|
|
|
|
|
|
- **badge:** This package provides macros for creating Bootstrap Badge
|
|
|
|
components. Badges are small status descriptors for UI elements. They can be
|
|
|
|
used to add additional information to an element, such as a count.
|
|
|
|
|
|
|
|
- **button:** This package provides macros for creating Bootstrap Button
|
|
|
|
components. Buttons are used for actions, like submitting forms or initiating
|
|
|
|
actions.
|
|
|
|
|
|
|
|
- **card:** This package provides macros for creating Bootstrap Card components.
|
|
|
|
Cards are flexible and extensible containers for displaying content in a
|
|
|
|
structured format.
|
|
|
|
|
|
|
|
- **dropdown:** This package provides macros for creating Bootstrap Dropdown
|
|
|
|
components. Dropdowns are toggleable, contextual overlays for displaying
|
|
|
|
lists of links and actions in a dropdown format.
|
|
|
|
|
|
|
|
- **list group:** This package provides macros for generating Bootstrap List
|
|
|
|
Group components. List groups are flexible and powerful components for
|
|
|
|
displaying not only simple lists of elements, but complex ones with custom
|
|
|
|
content.
|
|
|
|
|
|
|
|
- **navbar:** This package provides macros for creating Bootstrap Navbar
|
|
|
|
components. Navbars are responsive meta components that serve as navigation
|
|
|
|
headers for your application or site.
|
|
|
|
|
|
|
|
- **nav / tab:** This package provides macros for creating Bootstrap Nav
|
|
|
|
components. Navs are navigation components that can be styled in different
|
|
|
|
ways and can contain links, text, or any other kind of content.
|
|
|
|
|
|
|
|
- **pagination:** This package provides macros for creating Bootstrap Pagination
|
|
|
|
components. Pagination is used to let the user navigate through a set of
|
|
|
|
discrete pages.
|
|
|
|
|
|
|
|
- **table:** This package provides macros for generating Bootstrap Table
|
|
|
|
components. Tables are used to present data in a tabular format.
|
|
|
|
|
|
|
|
- **spinner:** This package provides macros for creating Bootstrap Spinner
|
|
|
|
components. Spinners are used to indicate a loading state of a page or a
|
|
|
|
section.
|
|
|
|
|
|
|
|
|
2024-10-06 10:11:30 +02:00
|
|
|
<a id="org0102225"></a>
|
2024-03-29 14:05:02 +01:00
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
|
|
|
git clone https://git.sr.ht/~marcuskammer/dev.metalisp.sbt ~/quicklisp/local-projects/dev.metalisp.sbt/
|
|
|
|
|
2024-03-29 14:11:50 +01:00
|
|
|
|
2024-10-06 10:11:30 +02:00
|
|
|
<a id="org3c2e2b5"></a>
|
2024-03-29 14:11:50 +01:00
|
|
|
|
|
|
|
### Load library
|
|
|
|
|
2024-03-29 14:05:02 +01:00
|
|
|
(ql:quickload :dev.metalisp.sbt)
|
|
|
|
|
|
|
|
|
2024-10-06 10:11:30 +02:00
|
|
|
<a id="org9fb428e"></a>
|
2024-03-29 14:11:50 +01:00
|
|
|
|
|
|
|
### Run tests
|
|
|
|
|
2024-03-29 14:13:20 +01:00
|
|
|
cd ~/quicklisp/local-projects/dev.metalisp.sbt/
|
2024-03-29 14:11:50 +01:00
|
|
|
|
|
|
|
sh run-tests.sh
|
|
|
|
|
|
|
|
|
2024-10-06 10:11:30 +02:00
|
|
|
<a id="org547939f"></a>
|
2024-03-29 14:05:02 +01:00
|
|
|
|
|
|
|
## Issue Tracker
|
|
|
|
|
2024-10-06 10:11:30 +02:00
|
|
|
- <https://todo.sr.ht/~marcuskammer/metalisp>
|
2024-03-29 14:05:02 +01:00
|
|
|
|
|
|
|
|
2024-10-06 10:11:30 +02:00
|
|
|
<a id="orga4368de"></a>
|
2024-03-29 14:05:02 +01:00
|
|
|
|
|
|
|
## Mailing list
|
|
|
|
|
2024-10-06 10:11:30 +02:00
|
|
|
- <https://lists.sr.ht/~marcuskammer/metalisp>
|
|
|
|
|
|
|
|
|
|
|
|
<a id="org9528711"></a>
|
|
|
|
|
|
|
|
## XMPP (Jabber) Chat
|
2024-03-29 14:05:02 +01:00
|
|
|
|
2024-10-06 10:11:30 +02:00
|
|
|
- metalisp@conference.mailbox.org
|
2024-03-29 14:05:02 +01:00
|
|
|
|
|
|
|
|
2024-10-06 10:11:30 +02:00
|
|
|
<a id="org7c3ae8d"></a>
|
2024-03-29 14:19:50 +01:00
|
|
|
|
|
|
|
## RSS Feed
|
|
|
|
|
|
|
|
- <https://git.sr.ht/~marcuskammer/dev.metalisp.sbt/log/main/rss.xml>
|
|
|
|
|
|
|
|
|
2024-10-06 10:11:30 +02:00
|
|
|
<a id="org7c30993"></a>
|
2024-03-29 14:05:02 +01:00
|
|
|
|
|
|
|
## Similar Libraries
|
|
|
|
|
|
|
|
- <https://github.com/rmhsilva/semantic-spinneret>
|
|
|
|
|
|
|
|
- <https://github.com/thephoeron/cl-bootstrap>
|
|
|
|
|
|
|
|
- <https://github.com/rajasegar/cl-bootstrap/>
|
|
|
|
|
|
|
|
|
2024-10-06 10:11:30 +02:00
|
|
|
<a id="org6fb104a"></a>
|
2024-03-29 14:05:02 +01:00
|
|
|
|
|
|
|
## Author
|
|
|
|
|
|
|
|
- Marcus Kammer (marcus.kammer@metalisp.dev)
|
|
|
|
|
|
|
|
|
2024-10-06 10:11:30 +02:00
|
|
|
<a id="org6ee8fc7"></a>
|
2024-03-29 14:05:02 +01:00
|
|
|
|
|
|
|
## Copyright
|
|
|
|
|
|
|
|
Copyright (c) 2023 Marcus Kammer (marcus.kammer@metalisp.dev)
|
|
|
|
|