Update
This commit is contained in:
parent
84c8e210c5
commit
c4ca4e61b2
3 changed files with 56 additions and 13 deletions
|
@ -5671,6 +5671,7 @@ td {
|
||||||
/* line 31, ../scss/_typography.scss */
|
/* line 31, ../scss/_typography.scss */
|
||||||
code {
|
code {
|
||||||
font-size: 0.875rem;
|
font-size: 0.875rem;
|
||||||
|
line-height: 1.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* line 33, ../scss/_typography.scss */
|
/* line 33, ../scss/_typography.scss */
|
||||||
|
|
2
assets/css/style.min.css
vendored
2
assets/css/style.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -1,21 +1,13 @@
|
||||||
---
|
---
|
||||||
layout: page
|
layout: page-fullwidth
|
||||||
title: "Theme Documentation"
|
title: "Theme Documentation"
|
||||||
subtitle: "How to use Feeling Responsive"
|
subtitle: "How to use Feeling Responsive"
|
||||||
description: "The documentation is a work in progress..."
|
description: "The documentation is a work in progress..."
|
||||||
image_header: "no"
|
image_header: "no"
|
||||||
permalink: "/documentation/"
|
permalink: "/documentation/"
|
||||||
---
|
---
|
||||||
|
<div class="row">
|
||||||
<div class="panel radius" markdown="1">
|
<div class="medium-8 columns" markdown="1">
|
||||||
## Table of Contents {#toc}
|
|
||||||
{: .sans }
|
|
||||||
|
|
||||||
- [Page/Posts Formats](#formats)
|
|
||||||
- [How to use images](#images)
|
|
||||||
- [Possibilites to style your Post](#styling)
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
## Different Page/Posts Formats {#formats}
|
## Different Page/Posts Formats {#formats}
|
||||||
|
|
||||||
|
@ -75,4 +67,54 @@ You can style your content in different ways. There are elements like subtitles,
|
||||||
|
|
||||||
You can choose to show a special full-width header image or not.
|
You can choose to show a special full-width header image or not.
|
||||||
|
|
||||||
## Meta-Data
|
## Meta-Data
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## Create a Table of Contents via Kramdown
|
||||||
|
|
||||||
|
With the Kramdown parser for Markdown you can render a table of contents for your documents. Just insert the following HTML in your post before the actual content. More information on [»Automatic ›Table of Contents‹ Generation«][1].
|
||||||
|
|
||||||
|
### Bare Bones Version
|
||||||
|
{% highlight html %}
|
||||||
|
### Table of Contents
|
||||||
|
* Auto generated table of contents
|
||||||
|
{:toc}
|
||||||
|
{% endhighlight %}
|
||||||
|
|
||||||
|
### Foundation panel version
|
||||||
|
|
||||||
|
{% highlight html %}
|
||||||
|
<div class="panel radius" markdown="1">
|
||||||
|
### Table of Contents
|
||||||
|
* Auto generated table of contents
|
||||||
|
{:toc}
|
||||||
|
</div>
|
||||||
|
{% endhighlight %}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div><!-- /.medium-8.columns -->
|
||||||
|
|
||||||
|
<div class="medium-4 columns" markdown="1">
|
||||||
|
<div class="panel radius" markdown="1">
|
||||||
|
**Table of Contents**
|
||||||
|
|
||||||
|
* TOC
|
||||||
|
{:toc}
|
||||||
|
</div>
|
||||||
|
</div><!-- /.medium-4.columns -->
|
||||||
|
</div><!-- /.row -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[1]: http://kramdown.gettalong.org/converter/html.html#toc
|
||||||
|
[2]: #
|
||||||
|
[3]: #
|
||||||
|
[4]: #
|
||||||
|
[5]: #
|
||||||
|
[6]: #
|
||||||
|
[7]: #
|
||||||
|
[8]: #
|
||||||
|
[9]: #
|
||||||
|
[10]: #
|
Reference in a new issue