/*doc | |
--- | |
title: Breadcrumb | |
component: | |
notes: | |
- Note 1 | |
- Note 2 | |
see: | |
- link1 | |
- link2 | |
- link3 | |
scripts: | |
css: | |
- main.css | |
js: | |
- main.js | |
styleguide: | |
tpl: full | |
show: true | |
collection: styleguide | |
group: Design Elements | |
category: "" | |
version: | |
version: 1.0.0 | |
author: John Doe <email> | |
created: DATE | |
modified: DATE | |
copyright: Copyright(c) 2018, by Author | |
--- | |
Description écrite à l'aide de Markdown. | |
Il est possible d'insérer du code sous forme "highlight". | |
* Plusieurs blocs de codes peuvent se suivre ; | |
* Utiliser le clé du language pour faire correspondre la couleur syntaxique ; | |
* Insérer le mot clé `demo` pour incruster un démo du code | |
* Insérer le mot clé `responsive` pour indiquer une mise en forme responsive de la démo. | |
* Insérer le mot clé `test` pour générer une captures d'image du code. | |
```html demo responsive test | |
<div class="breadcrumb clearfix" id="breadcrumb"> | |
<p> | |
<span>You are here :</span> | |
<a itemprop="url" href="/"><span itemprop="title">Home</span></a> › | |
<a itemprop="url" href="/"><span itemprop="title">Catégorie One</span></a> › | |
<strong class="regular">Current page title</strong> | |
</p> | |
</div> | |
``` | |
*/ | |
.breadcrumb { | |
margin-bottom: 0; | |
} | |
/*end */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment