mirror of
				https://github.com/fooflington/selfdefined.git
				synced 2025-11-03 23:29:03 +00:00 
			
		
		
		
	* Move speech definition into main template * Remove speech definition from definition-content.njk * add margin top helper * add content flag components * Add selection styling to .box class * Change content warning flag styling * Add additional content warning guidance and change styling * Expand examples list * reworded topic[s] after testing in screen reader * Also adjust wording on avoid content guidelines block * Output title into content warning example * Update 11ty/_includes/components/content-warning.njk Co-authored-by: Tatiana Mac <github@tatianamac.com> * Update 11ty/_includes/components/content-warning-flag.njk Co-authored-by: Tatiana Mac <github@tatianamac.com> * Update 11ty/_includes/components/content-warning.njk Co-authored-by: Tatiana Mac <github@tatianamac.com> Co-authored-by: Tatiana Mac <github@tatianamac.com>
		
			
				
	
	
		
			29 lines
		
	
	
		
			904 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			904 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
<section class="definition-content">
 | 
						|
  <section class="definition-content__content">
 | 
						|
    {{ content | safe }}
 | 
						|
    {# <p>{{ alt_words }}</p> #}
 | 
						|
  </section>
 | 
						|
  {%- if alt_words -%}
 | 
						|
    <section class="definition-content__content">
 | 
						|
      <h2 id="alt-words">Alt Words</h2>
 | 
						|
      <ul class="list-semicolon" aria-labelledby="alt-words">
 | 
						|
        {% for word in alt_words %}
 | 
						|
          <li>{{ word | linkIfExistsInCollection(collections.definedWords) | safe }}</li>
 | 
						|
        {% endfor %}
 | 
						|
      </ul>
 | 
						|
    </section>
 | 
						|
  {% endif %}
 | 
						|
  {%- if reading -%}
 | 
						|
    <section class="definition-content__content">
 | 
						|
      <h2 id="further-reading">Further Reading</h2>
 | 
						|
      <ul class="list-semicolon" aria-labelledby="further-reading">
 | 
						|
        {% for link in reading %}
 | 
						|
          <li>
 | 
						|
            <a href="{{link.href}}">{{ link.text }}</a>
 | 
						|
          </li>
 | 
						|
        {% endfor %}
 | 
						|
      </ul>
 | 
						|
    </section>
 | 
						|
  {% endif %}
 | 
						|
</section>
 |