Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_index.md « sample « content « exampleSite - github.com/thingsym/hugo-theme-techdoc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bf46e8f13ebc1d124bca252023d719e8ac95019f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
---
title: "Sample Document"
date: 2017-10-17T15:26:15Z
draft: false
weight: 10
description: "this is a sample document."
---

## Headings

# Heading level 1
## Heading level 2
### Heading level 3
#### Heading level 4
##### Heading level 5
###### Heading level 6

## Paragraph

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. [Ut enim ad minim veniam](https://github.com/thingsym/hugo-theme-techdoc), 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.

## Emphasis

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

## Horizontal Rule

---

## Lists

### Unordered Lists

* Lorem ipsum dolor sit amet, consectetur adipisicing elit
* Lorem ipsum dolor sit amet, consectetur adipisicing elit
* Lorem ipsum dolor sit amet, consectetur adipisicing elit
	* Lorem ipsum dolor sit amet, consectetur adipisicing elit
	* Lorem ipsum dolor sit amet, consectetur adipisicing elit
	* Lorem ipsum dolor sit amet, consectetur adipisicing elit
	* Lorem ipsum dolor sit amet, consectetur adipisicing elit

### Ordered Lists

1. Lorem ipsum dolor sit amet, consectetur adipisicing elit
2. Lorem ipsum dolor sit amet, consectetur adipisicing elit
3. Lorem ipsum dolor sit amet, consectetur adipisicing elit

## Code

```ruby
puts 'The best way to log and share programmers knowledge.' 
puts 'The best way to log and share programmers knowledge.'

puts 'The best way to log and share programmers knowledge.' 
puts 'The best way to log and share programmers knowledge.'

puts 'The best way to log and share programmers knowledge.'

puts 'The best way to log and share programmers knowledge.' 
puts 'The best way to log and share programmers knowledge.' 
puts 'The best way to log and share programmers knowledge.'
```

## Inline code

inline code `#ffce44`

## Blockquote

> this is a blockquote. this is a blockquote. this is a blockquote. this is a blockquote. this is a blockquote. this is a blockquote.
>
> this is a blockquote.
>
> this is a blockquote.
>
> this is a blockquote.

## Table

| header | header | header |
|------------|-------------|--------------|
| Lorem      | Lorem       | Lorem        |
| ipsum      | ipsum       | ipsum        |
| dolor      | dolor       | dolor        |
| sit        | sit         | sit          |
| amet       | amet        | amet         |

### with alignment

| Left align | Right align | Center align |
|:-----------|------------:|:------------:|
| This       | This        | This         |
| column     | column      | column       |
| will       | will        | will         |
| be         | be          | be           |
| left       | right       | center       |
| aligned    | aligned     | aligned      |

## Image

![2 People Sitting With View of Yellow Flowers during Daytime](../images/pexels-photo-196666.jpeg "sample")


## Image with link

[![2 People Sitting With View of Yellow Flowers during Daytime](../images/pexels-photo-196666.jpeg)](https://www.pexels.com/photo/2-people-sitting-with-view-of-yellow-flowers-during-daytime-196666/)


## Definition Lists

First Term
: This is the definition.

Second Term
: This is the definition.
: This is the definition.

## Task Lists

- [x] to do task 1
- [ ] to do task 2
- [ ] to do task 3

## Footnotes

this is a footnote,[^1] and this is a second footnote.[^2]

[^1]: This is the first footnote.
[^2]: This is the second footnote.