Lede block

Use vf-lede for introductory text.

github location npm version

Variants

Lede text is a generic type of conent for different diseases in which cells divide many more times than usual. This abnormal growth can affect many cell types in almost any part of the body.

Nunjucks syntax

Depending on your environment you'll want to use render or include. As a rule of thumb: server-side use include, precompiled browser use render. If you're using vf-eleventy you should use include.

Using include

You'll need to pass a context object from your code or Yaml file (example), as well as the path to the Nunjucks template. Nunjucks' include is an abstraction of render and provides some additional portability.


{% set context fromYourYamlFile %}
- or -
{% set context = { 
"component-type" : "block",
"vf_lede_text" : "Lede text is a generic type of conent for different diseases in which cells divide many more times than usual. <a href="#">This abnormal growth</a> can affect many cell types in almost any part of the body.",
 }
%}
{% include "../path_to/vf-lede/vf-lede.njk" %}
                

Using render

This approach is best for bare-bones Nunjucks environments, such as precompiled templates with the Nunjucks slim runtime where include is not be available.


{% render '@vf-lede', {
  "component-type" : "block",
  "vf_lede_text" : "Lede text is a generic type of conent for different diseases in which cells divide many more times than usual. <a href="#">This abnormal growth</a> can affect many cell types in almost any part of the body.",}
%}
                
HTML
<p class="vf-lede">Lede text is a generic type of conent for different diseases in which cells divide many more times than usual. <a href="#">This abnormal growth</a> can affect many cell types in almost any part of the body.</p>
              

Examples

Installation info

This repository is distributed with npm. After installing npm and yarn, you can install with this command.

$ yarn add --dev @visual-framework/vf-lede

Sass/CSS

The style files included are written in Sass. If you're using a VF-core project, you can import it like this:

@import "@visual-framework/vf-lede/index.scss";

Make sure you import Sass requirements along with the modules. You can use a project boilerplate or the vf-sass-starter

Changelog

Changelog

1.0.1

  • Fixes typo in Yaml

1.0.0

  • Initial stable release

Assets



File system location: components/vf-lede

Find an issue on this page? Propose a change or discuss it.