Typografie
Přehled základních Bootstrap typografických prvků, komponent a utility tříd používaných ve frontendových šablonách webu frameworku.
Headings
h1. Bootstrap heading
h2. Bootstrap heading
h3. Bootstrap heading
h4. Bootstrap heading
h5. Bootstrap heading
h6. Bootstrap heading
Display headings
Paragraphs
This is a lead paragraph. It is used for page introductions or stronger content summaries.
A regular text paragraph. Lemonade Framework is a lightweight application foundation for PHP 8.1+ for custom web systems, administration interfaces, CMS projects and integration applications.
Secondary text is useful for supporting descriptions, explanations and less important information.
Small secondary text is useful for metadata, notes, dates or technical additions.
Inline text elements
Highlighted text
Deleted text
Strikethrough text
Inserted text
Underlined text
Small text
Bold text
Italic text
Link example: framework documentation .
Lists
Unordered list
- Application kernel and bootstrap
- Routing and URL generator
- Middleware pipeline
- View layer and components
Ordered list
- Receive request
- Pass through middleware
- Resolve route
- Return response
Description list
- Core
- Bootstrap, kernel, context and service providers.
- HTTP
- Request, response, routing and middleware pipeline.
- View
- Layouts, partials, helpers and UI components.
Blockquote
A framework should be small enough to read and practical enough to carry a real application.
Code
Inline code: $router->url('articles.index')
<?php
declare(strict_types=1);
$router->getNamed(
'articles.index',
'/blog',
ArticleController::class . '@index',
);
return $this->redirect(
$router->url('articles.index'),
);
Tables
| Component | Category | Status |
|---|---|---|
| Routing | HTTP | stable |
| Validation | Input | stable |
| Database Layer | Persistence | draft |
Badges
Alerts
Forms
Cards
CSRF protection
Token manager, middleware validation and a helper for hidden fields in forms.
Documentation