Dancer2-Plugin-LiteBlog

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN


0.03    2023-11-02

        [FEATURES]
        * New route to render static assets in article's directory (eg: 
          /blog/some-article/featured.jpg). 
        * New method <render_client_error> to properly render 404 in Liteblog's
          look and feel.
        * If 'navigation' is set, on mobile displays, a hamburger menu is
          displayed. When the user clicks on it, the navigation items are
          displayed as a popup menu.
        * Widgets now log what they do in Dancer2's logging system.
        * (CSS) Blog post header has a nice styling even when no feature image
          is set.
        * (CSS) Activities cards are now fixed to a maximum of 3 cards per row,
           with a maximum width of 320px and minimum width of 280px;
        * (CSS) Use CSS variables for common colors in liteblog.css to ease
          theming changes.

        [SCAFFOLDER]
        * The provided article is a little documentation about the 'Blog'

lib/Dancer2/Plugin/LiteBlog/Scaffolder/Data.pm  view on Meta::CPAN


/* Accessibility rules */
a:focus, button:focus, .btn:focus {
    outline: 3px solid rgba(0, 123, 255, 0.5);
    outline-offset: 2px;
}

/* Header Menu */
/* CSS for the mobile header */
#mobile-menu-container {
    position: relative; /* to hold the popup menu */
}

.hero-bar-hidden {
    display: none;
}

#mobile-header {
    display: none;
    background-color: #2d2d2d;
    color: #ffffff;

t/public/css/liteblog.css  view on Meta::CPAN


/* Accessibility rules */
a:focus, button:focus, .btn:focus {
    outline: 3px solid rgba(0, 123, 255, 0.5);
    outline-offset: 2px;
}

/* Header Menu */
/* CSS for the mobile header */
#mobile-menu-container {
    position: relative; /* to hold the popup menu */
}

.hero-bar-hidden {
    display: none;
}

#mobile-header {
    display: none;
    background-color: #2d2d2d;
    color: #ffffff;



( run in 0.672 second using v1.01-cache-2.11-cpan-364913b4093 )