enmi12/glossaire/_posts/tests/2011-05-31-tiny-text.html
author ymh <ymh.work@gmail.com>
Mon, 08 Sep 2025 19:44:41 +0200
changeset 23 417f20492bf7
parent 0 d970ebf37754
permissions -rwxr-xr-x
Update Docker configuration and plugin versions - Upgrade MariaDB from 10.6 to 11 with auto-upgrade support - Add WordPress debug environment variable to FPM container - Update PHP-FPM Dockerfile base image - Update Include Mastodon Feed plugin with bug fixes and improvements - Update Portfolio plugin (v2.58) with latest translations and demo data enhancements - Remove old README.md from Mastodon Feed plugin 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>

---
title: Tiny text
layout: default
category: tests
lorem: Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
---

<style>
  .text-box {
    width: 200px;
    margin: 10px;
    color: #000;
    float: left;
    font-size: 11px;
    line-height: 1.3em;
    padding: 10px;
  }
  
  .blue { background: #88F; }
  .red { background: #F88; }
</style>

<section id="copy">
  <p>Test to see how IE7 deals with type rendering</p>
</section>

<section id="options" class="clearfix">

  <h3>Filters</h3>

  <ul id="filters" class="option-set clearfix" data-option-key="filter">
    <li><a href="#show-all" data-option-value="*" class="selected">show all</a></li>
    <li><a href="#red" data-option-value=".red">red</a></li>
    <li><a href="#blue" data-option-value=".blue">blue</a></li>
  </ul>

</section> <!-- #options -->

<div id="container" class="clearfix">
  <div class="red text-box">{{ page.lorem }}</div>
  <div class="blue text-box">{{ page.lorem }}</div>
  <div class="red text-box">{{ page.lorem }}</div>
  <div class="blue text-box">{{ page.lorem }}</div>
  <div class="red text-box">{{ page.lorem }}</div>
  <div class="blue text-box">{{ page.lorem }}</div>
  <div class="red text-box">{{ page.lorem }}</div>
  <div class="blue text-box">{{ page.lorem }}</div>
  <div class="red text-box">{{ page.lorem }}</div>
  <div class="blue text-box">{{ page.lorem }}</div>
  <div class="red text-box">{{ page.lorem }}</div>
  <div class="blue text-box">{{ page.lorem }}</div>
  <div class="red text-box">{{ page.lorem }}</div>
  <div class="blue text-box">{{ page.lorem }}</div>
</div>


<script src="../{{ site.jquery_js }}"></script>
<script src="../{{ site.isotope_js }}"></script>
<script>
  $(function(){

    var $container = $('#container');

    $container.isotope({
    });
    
    {% include option-set-buttons.js %}

  });
</script>