Add option to show posts on Homepage (#31)

* Add recent posts to Homepage

* Add different content posts

* Update html and css

* Add basic doc in README

* Update README

* Use partial

* Update page content
This commit is contained in:
Yash Mehrotra
2021-07-19 20:30:35 +05:30
committed by GitHub
parent 81ee72eb46
commit 5a1959c930
15 changed files with 1454 additions and 100 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -1,61 +0,0 @@
---
title: "First Post"
date: 2021-05-15T23:39:49+05:30
tags: ["abc", "def"]
type: post
---
Yo yo yo
# This is a heading
- And
- this
- is
- a
- list
1. This
2. is
3. a
4. numbered
5. list
> And this is a really really really really really long blockquote which spans across multple lines
One importnant thing to keep in mind is that using multi-stage will not impact the build time of your container, the time difference between the build times is negligible
| Language | Normal | Multi-Stage |
|-------|----------------|-------|
| Python | 274 MB | 84.5 MB |
| Golang | 829 MB | 15.3MB |
Multi-stage builds are useful where space is a constraint, and whilst it is always better to build small concise containers, it is easy to get carried away trying to shave off a few megabytes. Even though they are great to use, they shouldnt be abused, the effort should always spent be towards improving the workflow.
```py
# Codeblocks look like this
def print():
print('Hello world!')
```
```golang
package main
import (
"fmt"
)
// This is a comment
func main () {
fmt.Println("Hello, world!")
}
```
```bash
PATH=$HOME
cat $HOME/file.txt | while read -n data; do
echo $data
done
```

View File

@@ -1,8 +1,9 @@
---
title: "Second Post"
title: "Lorem Ipsum"
date: 2021-04-15T23:39:49+05:30
tags: ["xyz", "def"]
type: "post"
weight: 3
---
# Heading 1
@@ -44,4 +45,4 @@ This continues at length and variously. The text is not really Greek, but badly
Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?
At ver
At ver

View File

@@ -0,0 +1,139 @@
---
title: "Markdown Syntax Guide"
date: 2019-06-01T17:55:28+08:00
description: "Sample article showcasing basic Markdown syntax and formatting for HTML elements."
tags: ["markdown", "css", "html"]
type: post
---
This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.
<!--more-->
## Headings
The following HTML `<h1>``<h6>` elements represent six levels of section headings. `<h1>` is the highest section level while `<h6>` is the lowest.
# H1
## H2
### H3
#### H4
##### H5
###### H6
## Paragraph
Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat.
Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.
## Blockquotes
The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a `footer` or `cite` element, and optionally with in-line changes such as annotations and abbreviations.
#### Blockquote without attribution
> Tiam, ad mint andaepu dandae nostion secatur sequo quae.
> **Note** that you can use *Markdown syntax* within a blockquote.
#### Blockquote with attribution
> Don't communicate by sharing memory, share memory by communicating.<br>
> — <cite>Rob Pike[^1]</cite>
[^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015.
## Tables
Tables aren't part of the core Markdown spec, but Hugo supports them out-of-the-box.
Name | Age
--------|------
Bob | 27
Alice | 23
#### Inline Markdown within tables
| Italics | Bold | Code |
| -------- | -------- | ------ |
| *italics* | **bold** | `code` |
## Code Blocks
#### Code block with backticks
```html
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Example HTML5 Document</title>
</head>
<body>
<p>Test</p>
</body>
</html>
```
#### Code block indented with four spaces
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Example HTML5 Document</title>
</head>
<body>
<p>Test</p>
</body>
</html>
#### Code block with Hugo's internal highlight shortcode
{{< highlight html >}}
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Example HTML5 Document</title>
</head>
<body>
<p>Test</p>
</body>
</html>
{{< /highlight >}}
## List Types
#### Ordered List
1. First item
2. Second item
3. Third item
#### Unordered List
* List item
* Another item
* And another item
#### Nested list
* Fruit
* Apple
* Orange
* Banana
* Dairy
* Milk
* Cheese
## Other Elements — abbr, sub, sup, kbd, mark
<abbr title="Graphics Interchange Format">GIF</abbr> is a bitmap image format.
H<sub>2</sub>O
X<sup>n</sup> + Y<sup>n</sup> = Z<sup>n</sup>
Press <kbd><kbd>CTRL</kbd>+<kbd>ALT</kbd>+<kbd>Delete</kbd></kbd> to end the session.
Most <mark>salamanders</mark> are nocturnal, and hunt for insects, worms, and other small creatures.

View File

@@ -1,23 +0,0 @@
---
title: "Third Post"
date: 2020-04-15T23:39:49+05:30
tags: ["xyz"]
type: "post"
---
Yo yo yo
# This is a heading
- And
- this
- is
- a
- list
```py
Codeblocks look like this
def print():
print('Hello world!')
```

View File

@@ -1,7 +1,7 @@
---
title: "Projects"
type: singles
slug: projects
slug: /projects
---

View File

@@ -2,7 +2,7 @@
title: "Tatooine"
date: 2021-05-12T23:39:49+05:30
type: singles
slug: "tatooine"
slug: tatooine
---
### A long time ago in a galaxy far, far away....