hacks-guide-minimal-mistake.../_posts/2011-03-10-sample-post.md

96 lines
2.4 KiB
Markdown
Raw Normal View History

2013-05-24 16:25:31 +02:00
---
layout: post
title: Sample Post
2013-05-28 17:00:07 +02:00
description: "Just about everything you'll need to style in the theme: headings, paragraphs, blockquotes, tables, code blocks, and more."
2013-05-24 16:25:31 +02:00
category: articles
tags: [intro, beginner, jekyll, tutorial]
image:
feature: texture-feature-05.jpg
---
2013-05-24 21:06:54 +02:00
<section id="table-of-contents" class="toc">
<header>
<h3 class="delta">Contents</h3>
</header>
<div id="drawer" markdown="1">
* Auto generated table of contents
{:toc}
</div>
</section><!-- /#table-of-contents -->
2013-05-24 16:25:31 +02:00
## HTML Elements
2013-05-28 17:00:07 +02:00
Below is just about everything you'll need to style in the theme. Check the source code to see the many embedded elements within paragraphs.
2013-05-24 16:25:31 +02:00
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
2013-05-24 20:19:52 +02:00
### Body text
2013-05-24 16:25:31 +02:00
Lorem ipsum dolor sit amet, test link adipiscing elit. **This is strong**. Nullam dignissim convallis est. Quisque aliquam.
2013-05-24 20:19:52 +02:00
![Smithsonian Image]({{ site.url }}/images/3953273590_704e3899d5_m.jpg)
{: .pull-right}
2013-05-24 16:25:31 +02:00
*This is emphasized*. Donec faucibus. Nunc iaculis suscipit dui. 53 = 125. Water is H2O. Nam sit amet sem. Aliquam libero nisi, imperdiet at, tincidunt nec, gravida vehicula, nisl. The New York Times (Thats a citation). Underline.Maecenas ornare tortor. Donec sed tellus eget sapien fringilla nonummy. Mauris a ante. Suspendisse quam sem, consequat at, commodo vitae, feugiat in, nunc. Morbi imperdiet augue quis tellus.
HTML and CSS are our tools. Mauris a ante. Suspendisse quam sem, consequat at, commodo vitae, feugiat in, nunc. Morbi imperdiet augue quis tellus. Praesent mattis, massa quis luctus fermentum, turpis mi volutpat justo, eu volutpat enim diam eget metus.
### Blockquotes
> Lorem ipsum dolor sit amet, test link adipiscing elit. Nullam dignissim convallis est. Quisque aliquam.
## List Types
### Ordered Lists
1. Item one
1. sub item one
2. sub item two
3. sub item three
2. Item two
2013-05-24 20:19:52 +02:00
### Unordered Lists
* Item one
* Item two
* Item three
2013-05-24 16:25:31 +02:00
## Tables
| Header1 | Header2 | Header3 |
|:--------|:-------:|--------:|
| cell1 | cell2 | cell3 |
| cell4 | cell5 | cell6 |
|----
| cell1 | cell2 | cell3 |
| cell4 | cell5 | cell6 |
|=====
| Foot1 | Foot2 | Foot3
{: rules="groups"}
## Code Snippets
2013-05-28 15:00:43 +02:00
{% highlight css %}
2013-05-24 16:25:31 +02:00
#container {
float: left;
margin: 0 -240px 0 0;
width: 100%;
}
2013-05-28 15:00:43 +02:00
{% endhighlight %}
2013-05-24 20:19:52 +02:00
## Buttons
Make any link standout more when applying the `.btn` class.
<div markdown="0"><a href="#" class="btn">This is a button</a></div>