Lemonade Framework

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.

Typography

Headings

h1. Bootstrap heading

h2. Bootstrap heading

h3. Bootstrap heading

h4. Bootstrap heading

h5. Bootstrap heading
h6. Bootstrap heading
Display

Display headings

Display 1
Display 2
Display 3
Display 4
Display 5
Display 6
Text

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

Inline text elements

Highlighted text

Deleted text

Strikethrough text

Inserted text

Underlined text

Small text

Bold text

Italic text

Link example: framework documentation .

Lists

Lists

Unordered list

  • Application kernel and bootstrap
  • Routing and URL generator
  • Middleware pipeline
  • View layer and components

Ordered list

  1. Receive request
  2. Pass through middleware
  3. Resolve route
  4. 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.
Quote

Blockquote

A framework should be small enough to read and practical enough to carry a real application.

Code

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

Tables

ComponentCategoryStatus
RoutingHTTPstable
ValidationInputstable
Database LayerPersistencedraft
Buttons

Buttons

Badges

Badges

PrimarySecondarySuccessDangerWarningInfoLightDarkRounded pill
Alerts

Alerts

Forms

Forms

Example helper text below a form field.
Cards

Cards

HTTP

Routing

Named routes, parameterized paths, route groups and URL generator.

Documentation
Security

CSRF protection

Token manager, middleware validation and a helper for hidden fields in forms.

Documentation