Softpedia
 


LINUX CATEGORIES:



GLOBAL PAGES >>
NEWS ARCHIVE >>
SOFTPEDIA REVIEWS >>
MEET THE EDITORS >>
WEEK'S BEST
  • Linux Kernel 3.9.6 / 3....
  • Linux Kernel 3.0.82 LTS...
  • KDE Software Compilatio...
  • PulseAudio 4.0
  • Wireshark 1.10.0
  • NetworkManager 0.9.8.2
  • LibreOffice 3.6.6 / 4.0...
  • SystemRescueCd 3.7.0
  • Linux Kernel 3.10 RC6
  • Ubuntu Tweak 0.8.5
  • Home > Linux > Internet > Django Plugins

    django-scss 0.5

    Download button

    No screenshots available
    Downloads: 162  View global page NEW!  Tell us about an update
    User Rating:
    Rated by:
    NOT RATED
    0 user(s)
    Developer:

    License / Price:

    Last Updated:

    Category:
    Andrey Fedoseev | More programs
    BSD License / FREE
    November 30th, 2011, 15:20 GMT [view history]
    ROOT / Internet / Django Plugins

     Read user reviews (0)  Refer to a friend  Subscribe

    django-scss description

    Django template tags to compile SCSS into CSS

    django-scss is a Django app that provides template tags to compile SCSS into CSS from templates. It works with both inline code and extenal files.

    Installation

    - Add "django_scss" to INSTALLED_APPS setting.
    - Make sure that you have sass executable installed. See SASS official site for details.
    - Optionally, you can specify the full path to sass executable with SCSS_EXECUTABLE setting. By default it's set to sass.

    Example Usage

    Inline

    {% load scss %}

    < style >
     {% inlinescss %}
     #header {
     h1 {
     font-size: 26px;
     font-weight: bold;
     }
     p { font-size: 12px;
     a { text-decoration: none;
     &:hover { border-width: 1px }
     }
     }
     }
     {% endinlinescss %}
    < /style >


    renders to

    < style >
     #header h1 {
     font-size: 26px;
     font-weight: bold; }
     #header p {
     font-size: 12px; }
     #header p a {
     text-decoration: none; }
     #header p a:hover {
     border-width: 1px; }
    < /style >


    External file

    {% load scss %}

    < link rel="stylesheet" href="{{ STATIC_URL}}{% scss "path/to/styles.scss" %}" / >

    renders to

    < link rel="stylesheet" href="/media/SCSS_CACHE/path/to/styles-91ce1f66f583.css" / >

    Note that by default compiled files are saved into SCSS_CACHE folder under your STATIC_ROOT (or MEDIA_ROOT if you have no STATIC_ROOT in your settings). You can change this folder name with SCSS_OUTPUT_DIR setting.

    Note that all relative URLs in your stylesheet are converted to absolute URLs using your STATIC_URL setting.

    Settings

    LESS_EXECUTABLE
     Path to SASS compiler executable. Default: "sass".
    SCSS_OUTPUT_DIR
     Output directory for compiled external stylesheets. It's relative to STATIC_ROOT. Default: "SCSS_CACHE".
    SCSS_USE_CACHE
     Whether to use cache for inline styles. Default: True.
    SCSS_CACHE_TIMEOUT
     Cache timeout for inline styles (in seconds). Default: 30 days.
    SCSS_MTIME_DELAY
     Cache timeout for reading the modification time of external stylesheets (in seconds). Default: 10 seconds.


    Product's homepage

    Requirements:

    · Python
    · Django

    What's New in This Release: [ read full changelog ]

    · Add SCSS_ROOT setting

      


    TAGS:

    template tags | Django SCSS | Django | template | tags

    Go to top

    WindowsGamesDriversMacLinuxScriptsMobileHandheldNews

    SUBMIT PROGRAM   |   ADVERTISE   |   GET HELP   |   SEND US FEEDBACK   |   RSS FEEDS   |   UPDATE YOUR SOFTWARE   |   ROMANIAN FORUM