Text Elements

template django_logikal/components/text.html.j

Usage:

{% import 'django_logikal/components/text.html.j' as text %}
{% block component_head %}{{ component_head('text') }}{% endblock %}

Components:

macro text.paragraph(faker, sentences=5)

Generate a paragraph worth of fake text.

Example

{% set faker = faker_factory() %}
<p>{{ text.paragraph(faker) }}</p>
<p>
  Serious inside else memory if six. Whose group through despite cause. Sense
  peace economy travel. Total financial role together range line beyond its.
  Policy daughter need kind miss artist truth trouble.
</p>

Short-form Text

Example

{% import 'django_logikal/components/text.html.j' as text %}
{% set faker = faker_factory() %}
<article class="text fixed">
  <h1>Short-form Article</h1>
  <p>{{ text.paragraph(faker) }}</p>
  <p>{{ text.paragraph(faker) }}</p>

  <h2>Article Subtitle</h2>
  <p>{{ text.paragraph(faker) }}</p>

  <h3>Article Sub-subtitle</h3>
  <p>{{ text.paragraph(faker) }}</p>
  <ul>
    <li>First item in an unordered list</li>
    <li>Second item</li>
  </ul>
  <p>{{ text.paragraph(faker) }}</p>
  <ol>
    <li>First item in an ordered list</li>
    <li>Second item</li>
  </ol>
  <p>{{ text.paragraph(faker) }}</p>
</article>
<article class="text fixed">
  <h1>Short-form Article</h1>
  <p>
    Serious inside else memory if six. Whose group through despite cause. Sense
    peace economy travel. Total financial role together range line beyond its.
    Policy daughter need kind miss artist truth trouble.
  </p>
  <p>
    Rest human station property. Partner stock four. Region as true develop
    sound central. Language ball floor meet usually board necessary. Natural
    sport music white.
  </p>

  <h2>Article Subtitle</h2>
  <p>
    Natural explain before something first drug contain start. Party prevent
    live. Quickly candidate change although. Together type music hospital. Every
    speech support time operation wear often.
  </p>

  <h3>Article Sub-subtitle</h3>
  <p>
    Manage political record word group food break. Picture suddenly drug rule
    bring determine some forward. Beyond chair recently and. Plant view own
    available buy country store. Hospital have wonder already.
  </p>
  <ul>
    <li>First item in an unordered list</li>
    <li>Second item</li>
  </ul>
  <p>
    Create wife responsibility. Decision song view age international big
    employee. Author feeling job article level. Beyond write current grow rule
    stuff truth college. Whom around put suddenly garden.
  </p>
  <ol>
    <li>First item in an ordered list</li>
    <li>Second item</li>
  </ol>
  <p>
    Bring TV program actually race. Themselves true power home price check real.
    Score from animal exactly drive well good. Pull opportunity throughout take
    car. Hold increase practice ability court.
  </p>
</article>

Long-form Text

Example

{% import 'django_logikal/components/text.html.j' as text %}
{% set faker = faker_factory() %}
<article class="text long-form fixed">
  <h1>Long-form Article</h1>
  <p>{{ text.paragraph(faker) }}</p>
  <p>{{ text.paragraph(faker) }}</p>

  <h2>Article Subtitle</h2>
  <p>{{ text.paragraph(faker) }}</p>
  <p>{{ text.paragraph(faker) }}</p>
  <ul>
    <li>First item in an unordered list</li>
    <li>Second item</li>
  </ul>
  <p>{{ text.paragraph(faker) }}</p>
  <ol>
    <li>First item in an ordered list</li>
    <li>Second item</li>
  </ol>
  <p>{{ text.paragraph(faker) }}</p>
</article>
<article class="text long-form fixed">
  <h1>Long-form Article</h1>
  <p>
    Serious inside else memory if six. Whose group through despite cause. Sense
    peace economy travel. Total financial role together range line beyond its.
    Policy daughter need kind miss artist truth trouble.
  </p>
  <p>
    Rest human station property. Partner stock four. Region as true develop
    sound central. Language ball floor meet usually board necessary. Natural
    sport music white.
  </p>

  <h2>Article Subtitle</h2>
  <p>
    Natural explain before something first drug contain start. Party prevent
    live. Quickly candidate change although. Together type music hospital. Every
    speech support time operation wear often.
  </p>
  <p>
    Manage political record word group food break. Picture suddenly drug rule
    bring determine some forward. Beyond chair recently and. Plant view own
    available buy country store. Hospital have wonder already.
  </p>
  <ul>
    <li>First item in an unordered list</li>
    <li>Second item</li>
  </ul>
  <p>
    Create wife responsibility. Decision song view age international big
    employee. Author feeling job article level. Beyond write current grow rule
    stuff truth college. Whom around put suddenly garden.
  </p>
  <ol>
    <li>First item in an ordered list</li>
    <li>Second item</li>
  </ol>
  <p>
    Bring TV program actually race. Themselves true power home price check real.
    Score from animal exactly drive well good. Pull opportunity throughout take
    car. Hold increase practice ability court.
  </p>
</article>