enmi12/glossaire/_posts/tests/2011-05-31-tiny-text.html
author ymh <ymh.work@gmail.com>
Wed, 21 Sep 2022 18:19:35 +0200
changeset 18 be944660c56a
parent 0 d970ebf37754
permissions -rwxr-xr-x
Site enmi version 09/2022

---
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>