Last active
February 18, 2019 08:43
-
-
Save aquelito/f080ca352910b96a35128be52a7390f4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*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