Compare commits
No commits in common. "main" and "develop" have entirely different histories.
|
@ -0,0 +1,54 @@
|
||||||
|
---
|
||||||
|
title: This is a post with mastodon comments
|
||||||
|
date: '2018-08-23'
|
||||||
|
author: Óscar Otero
|
||||||
|
tags:
|
||||||
|
- Placeholder
|
||||||
|
- Example
|
||||||
|
- Lorem ipsum
|
||||||
|
- JavaScript
|
||||||
|
- TypeScript
|
||||||
|
comments:
|
||||||
|
src: 'https://mastodon.gal/@misteroom/110810445656343599'
|
||||||
|
---
|
||||||
|
|
||||||
|
Leverage agile frameworks to provide a robust synopsis for high level overviews.
|
||||||
|
Iterative approaches to corporate strategy foster collaborative thinking to
|
||||||
|
further the overall value proposition. Organically grow the holistic world view
|
||||||
|
of disruptive innovation via workplace diversity and empowerment.
|
||||||
|
|
||||||
|
<!--more-->
|
||||||
|
|
||||||
|
```js
|
||||||
|
// this is a command
|
||||||
|
function myCommand() {
|
||||||
|
let counter = 0;
|
||||||
|
|
||||||
|
counter++;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Test with a line break above this line.
|
||||||
|
console.log("Test");
|
||||||
|
```
|
||||||
|
|
||||||
|
Bring to the table win-win survival strategies to ensure proactive domination.
|
||||||
|
At the end of the day, going forward, a new normal that has evolved from
|
||||||
|
generation X is on the runway heading towards a streamlined cloud solution. User
|
||||||
|
generated content in real-time will have multiple touchpoints for offshoring.
|
||||||
|
|
||||||
|
## Section Header
|
||||||
|
|
||||||
|
Capitalize on low hanging fruit to identify a ballpark value added activity to
|
||||||
|
beta test. Override the digital divide with additional clickthroughs from
|
||||||
|
DevOps. Nanotechnology immersion along the information highway will close the
|
||||||
|
loop on focusing solely on the bottom line.
|
||||||
|
|
||||||
|
Here is a footnote reference,[^1] and [^2]another. And this[^3] is a long note.
|
||||||
|
|
||||||
|
[^1]: Here is the footnote.
|
||||||
|
|
||||||
|
[^2]: And here's another footnote.
|
||||||
|
|
||||||
|
[^3]: Here's one with multiple blocks.
|
||||||
|
|
||||||
|
Subsequent paragraphs are indented (4 spaces) to show that they belong to the previous footnote.
|
|
@ -0,0 +1,30 @@
|
||||||
|
---
|
||||||
|
title: How to install this theme
|
||||||
|
date: 2022-06-12
|
||||||
|
author: Óscar Otero
|
||||||
|
tags:
|
||||||
|
- Instructions
|
||||||
|
---
|
||||||
|
|
||||||
|
**Simple blog** is a clean and minimal blog theme for Lume, with support for
|
||||||
|
tags and authors. It allows to build your own blog **in seconds**, providing
|
||||||
|
also support for RSS.
|
||||||
|
|
||||||
|
<!--more-->
|
||||||
|
|
||||||
|
To use it, just import the theme in your `_config.ts` file:
|
||||||
|
|
||||||
|
```js
|
||||||
|
import lume from "lume";
|
||||||
|
import blog from "https://deno.land/x/lume_theme_simple_blog/mod.ts";
|
||||||
|
|
||||||
|
const site = lume();
|
||||||
|
site.use(blog());
|
||||||
|
|
||||||
|
export default site;
|
||||||
|
```
|
||||||
|
|
||||||
|
## Customization
|
||||||
|
|
||||||
|
> [!tip] You can use [lumeCMS](https://lume.land/cms) to customize the blog and
|
||||||
|
> add content easily
|
Loading…
Reference in New Issue