From 7555bee1cd341c159e70a3e6c2d3ae1d98c67697 Mon Sep 17 00:00:00 2001 From: Jeremy Nusser Date: Wed, 2 Nov 2022 17:57:18 -0500 Subject: [PATCH] Updated codecov --- config.yml => .github/workflows/config.yml | 4 +- .github/workflows/workflow.yml | 86 +- codecov.SHA256SUM | 1 - codecov.SHA256SUM.sig | 16 - package.json | 2 +- public/404.html | 324 +++++- public/about/index.html | 552 ++++++++- public/categories/blog/index.html | 650 ++++++++++- public/categories/blog/index.xml | 66 +- public/categories/blog/page/1/index.html | 11 +- public/categories/index.html | 408 ++++++- public/categories/index.xml | 30 +- public/categories/news/index.html | 650 ++++++++++- public/categories/news/index.xml | 66 +- public/categories/news/page/1/index.html | 11 +- public/categories/page/1/index.html | 11 +- public/contact/index.html | 347 +++++- public/index.html | 831 ++++++++++++-- public/index.xml | 155 ++- public/page/1/index.html | 11 +- public/page/2/index.html | 831 ++++++++++++-- public/page/3/index.html | 823 +++++++++++-- public/page/4/index.html | 831 ++++++++++++-- public/page/5/index.html | 809 ++++++++++++- public/posts/blog-post-1/index.html | 563 ++++++++- public/posts/blog-post-2/index.html | 563 ++++++++- public/posts/blog-post-3/index.html | 563 ++++++++- public/posts/blog-post-4/index.html | 563 ++++++++- public/posts/blog-post-5/index.html | 563 ++++++++- public/posts/blog-post-6/index.html | 563 ++++++++- public/posts/index.html | 853 +++++++++++++- public/posts/index.xml | 120 +- public/posts/news-post-1/index.html | 563 ++++++++- public/posts/news-post-2/index.html | 563 ++++++++- public/posts/news-post-3/index.html | 563 ++++++++- public/posts/news-post-4/index.html | 336 +++++- public/posts/news-post-5/index.html | 336 +++++- public/posts/news-post-6/index.html | 336 +++++- public/posts/page/1/index.html | 11 +- public/posts/page/2/index.html | 529 ++++++++- public/prose/index.html | 599 +++++++++- public/sitemap.xml | 75 +- public/tags/blog/index.html | 650 ++++++++++- public/tags/blog/index.xml | 66 +- public/tags/blog/page/1/index.html | 11 +- public/tags/index.html | 408 ++++++- public/tags/index.xml | 30 +- public/tags/news/index.html | 650 ++++++++++- public/tags/news/index.xml | 66 +- public/tags/news/page/1/index.html | 11 +- public/tags/page/1/index.html | 11 +- yarn-error.log | 1203 ++++++++++++++++++++ 52 files changed, 17802 insertions(+), 1092 deletions(-) rename config.yml => .github/workflows/config.yml (96%) delete mode 100644 codecov.SHA256SUM delete mode 100644 codecov.SHA256SUM.sig create mode 100644 yarn-error.log diff --git a/config.yml b/.github/workflows/config.yml similarity index 96% rename from config.yml rename to .github/workflows/config.yml index 5adbf0e..3ee89a0 100644 --- a/config.yml +++ b/.github/workflows/config.yml @@ -25,10 +25,10 @@ jobs: # The orb install-packages step will also automatically cache them for faster future runs. - node/install-packages: # If you are using yarn, change the line below from "npm" to "yarn" - pkg-manager: yarn + pkg-manager: npm - run: name: Run tests - command: yarn test + command: yarn test && "echo Build Successful!" workflows: # Below is the definition of your workflow. diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 6fe5b7f..9a57696 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -1,2 +1,86 @@ + - name: Codecov - uses: codecov/codecov-action@v3.1.1 +on: [push, pull_request] +jobs: + no-deps: + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [macos-latest, windows-latest, ubuntu-latest] + steps: + - name: Checkout +- uses: codecov/codecov-action@v3.1. + with: + flags: unittests # optional + name: codecov-umbrella # optional + fail_ci_if_error: true # optional (default = false) + verbose: true # optional (default = false) + + - name: Upload coverage to Codecov (script) + uses: ./ + with: + files: ./coverage/script/coverage-final.json + flags: script,${{ matrix.os }} + name: codecov-script + verbose: true + - name: Upload coverage to Codecov (demo) + uses: ./ + with: + files: ./coverage/calculator/coverage-final.json,./coverage/coverage-test/coverage-final.json + file: ./coverage/coverage-final.json + flags: demo,${{ matrix.os }} + name: codecov-demo + verbose: true + - name: Upload coverage to Codecov (version) + uses: ./ + with: + files: ./coverage/calculator/coverage-final.json,./coverage/coverage-test/coverage-final.json + file: ./coverage/coverage-final.json + flags: version,${{ matrix.os }} + name: codecov-version + version: v0.1.0_8880 + verbose: true + run: + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [macos-latest, windows-latest, ubuntu-latest] + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Install dependencies + run: npm install + - name: Lint + run: npm run lint + - name: Run tests and collect coverage + run: npm run test + - name: Upload coverage to Codecov (script) + uses: ./ + with: + files: ./coverage/script/coverage-final.json + flags: script,${{ matrix.os }} + name: codecov-script + verbose: true + - name: Upload coverage to Codecov (demo) + uses: ./ + with: + files: ./coverage/calculator/coverage-final.json,./coverage/coverage-test/coverage-final.json + file: ./coverage/coverage-final.json + flags: demo,${{ matrix.os }} + name: codecov-demo + verbose: true + - name: Upload coverage to Codecov (version) + uses: ./ + with: + files: ./coverage/calculator/coverage-final.json,./coverage/coverage-test/coverage-final.json + file: ./coverage/coverage-final.json + flags: version,${{ matrix.os }} + name: codecov-version + version: v0.1.0_8880 + verbose: true +Footer +© 2022 GitHub, Inc. +Footer navigation +Terms +Privacy + diff --git a/codecov.SHA256SUM b/codecov.SHA256SUM deleted file mode 100644 index 53b7781..0000000 --- a/codecov.SHA256SUM +++ /dev/null @@ -1 +0,0 @@ -20f9c9d78483fce977b6cc39e231a734a23bcd36f4d536bb7355222fb88d02bc codecov \ No newline at end of file diff --git a/codecov.SHA256SUM.sig b/codecov.SHA256SUM.sig deleted file mode 100644 index b91bf16..0000000 --- a/codecov.SHA256SUM.sig +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -iQIzBAABCgAdFiEEJwNOf9uFDgu8LGL/gGuyiu13mGkFAmMsvyQACgkQgGuyiu13 -mGmStA/+N4roe/N6hA78uO55SL8/8tfS75QYe+PbRF3nN+mpXsyik+gMZWfu9SLT -lQJK2T9PfU6dFx5VnceoENXgnH+SUvDLorKUOwTolXMIEos9bLCPRcgfe3AkTeZR -2sHZcDj75nmcfEpO9Tf/Jpq2PPrP24J3S822/v3ZT8lca9jJe8CJlBL15yXC1kgD -Vk72+r9KzAoAu6bCEvBOOIFHHNfVBf0635vamRFCHFgjN1rRJW5cuyieZr9rYa22 -1KDpN6vijJwUlrwB7V8wTvaeOEinR5Fzo55TtjTtE4brfaOF2KCzM33Czzep3SfH -OPJENE1+A+/bleRcVok5qmRfvMThSITE98INNk4qCVsB1YqTOvtJs5rFtyuH/Xqf -674HAqeNjzXvFME5oX4Hm31X1Y4rfzH0738H25J//3GqZWahivq7e8ElyYP+CI0H -pXbeN6E9Zup/QR6YjYWBV35AvRscC7v4e6HnlN9ctTuAd0VZJXI8JLM1XTgiQnIQ -rql/7lIYrvzLerPmzVoAmYZuV2iAE7pxfo3Iy9zEtgV8cF42peE3TDyrqj5Ylbtc -1pKlfIIAhoB/ff2hIvGonXG4OgTCCQrUvbtI8KsNi6UFPX5jhCaltKMsLG/JPM+Q -vXPa43eZ+aWPHOi9dFdlg98GCFesSVKLECkU4DjoZxJsI493PrQ= -=IHR5 ------END PGP SIGNATURE----- diff --git a/package.json b/package.json index 94d0496..bfae10a 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "watch:tw": "tailwindcss -i ./assets/css/main.css -o ./assets/css/style.css --watch", "watch:hugo": "hugo server", "build": "hugo --minify", - "test": "yarn" + "test": "hugo" }, "repository": { "type": "git", diff --git a/public/404.html b/public/404.html index a735be4..a1d4df9 100644 --- a/public/404.html +++ b/public/404.html @@ -1,17 +1,307 @@ -404 Page not found | TailBliss

404

Ooooops, something’s missing.

Sorry, we can't find that page. -You'll -find lots to explore on the home page.

Back -to Homepage
- \ No newline at end of file + + + + + + + + + + + + + + + 404 Page not found | TailBliss + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+

+ 404 +

+

+ Ooooops, something’s missing. +

+

Sorry, we can't find that page. + You'll + find lots to explore on the home page.

+ Back + to Homepage +
+
+
+ + + + + + + + + + \ No newline at end of file diff --git a/public/about/index.html b/public/about/index.html index f71f8e1..da9af54 100644 --- a/public/about/index.html +++ b/public/about/index.html @@ -1,33 +1,529 @@ -About | TailBliss

About

h1 Heading 😊

h2 Heading

h3 Heading

h4 Heading

h5 Heading
h6 Heading

Horizontal Rules




Typographic replacements

Enable typographer option to see result.

(c) (C) (r) (R) (tm) (TM) (p) (P) +-

test.. test… test….. test?….. test!….

!!!!!! ???? ,, – —

“Smartypants, double quotes” and ‘single quotes’

Emphasis

This is bold text

This is bold text

This is italic text

This is italic text

Strikethrough

Blockquotes

Blockquotes can also be nested…

…by using additional greater-than signs right next to each other…

…or with spaces between arrows.

Lists

Unordered

  • Create a list by starting a line with +, -, or *
  • Sub-lists are made by indenting 2 spaces:
    • Marker character change forces new list start:
      • Ac tristique libero volutpat at
      • Facilisis in pretium nisl aliquet
      • Nulla volutpat aliquam velit
  • Very easy!

Ordered

  1. Lorem ipsum dolor sit amet

  2. Consectetur adipiscing elit

  3. Integer molestie lorem at massa

  4. You can use sequential numbers…

  5. …or keep all the numbers as 1.

Start numbering with offset:

  1. foo
  2. bar

Code

Inline code

Indented code

// Some comments
+
+
+
+
+    
+
+
+
+
+
+
+
+
+
+ About | TailBliss 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+    
+    
+
+
+ +

+ About +

+
+
+
+
+ + + + + + + + + +
+
+ +
+

h1 Heading 😊

+

h2 Heading

+

h3 Heading

+

h4 Heading

+
h5 Heading
+
h6 Heading
+

Horizontal Rules

+
+
+
+

Typographic replacements

+

Enable typographer option to see result.

+

(c) (C) (r) (R) (tm) (TM) (p) (P) +-

+

test.. test… test….. test?….. test!….

+

!!!!!! ???? ,, – —

+

“Smartypants, double quotes” and ‘single quotes’

+

Emphasis

+

This is bold text

+

This is bold text

+

This is italic text

+

This is italic text

+

Strikethrough

+

Blockquotes

+
+

Blockquotes can also be nested…

+
+

…by using additional greater-than signs right next to each other…

+
+

…or with spaces between arrows.

+
+
+
+

Lists

+

Unordered

+
    +
  • Create a list by starting a line with +, -, or *
  • +
  • Sub-lists are made by indenting 2 spaces: +
      +
    • Marker character change forces new list start: +
        +
      • Ac tristique libero volutpat at
      • +
      +
        +
      • Facilisis in pretium nisl aliquet
      • +
      +
        +
      • Nulla volutpat aliquam velit
      • +
      +
    • +
    +
  • +
  • Very easy!
  • +
+

Ordered

+
    +
  1. +

    Lorem ipsum dolor sit amet

    +
  2. +
  3. +

    Consectetur adipiscing elit

    +
  4. +
  5. +

    Integer molestie lorem at massa

    +
  6. +
  7. +

    You can use sequential numbers…

    +
  8. +
  9. +

    …or keep all the numbers as 1.

    +
  10. +
+

Start numbering with offset:

+
    +
  1. foo
  2. +
  3. bar
  4. +
+

Code

+

Inline code

+

Indented code

+
// Some comments
 line 1 of code
 line 2 of code
 line 3 of code
-

Block code “fences”

Sample text here...
-

Syntax highlighting

var foo = function (bar) {
-  return bar++;
-};
-
-console.log(foo(5));
-

Tables

OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.

Right aligned columns

OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.

link text

link with title

Autoconverted link https://github.com/nodeca/pica (enable linkify to see)

Images

Minion -Stormtroopocat

Like links, Images also have a footnote style syntax

Alt text

With a reference later in the document defining the URL location:

Plugins

The killer feature of markdown-it is very effective support of -syntax plugins.

Emojies

Classic markup: 😉 :crush: 😢 :tear: 😆 😋

Shortcuts (emoticons): :-) :-( 8-) ;)

see how to change output with twemoji.

Subscript / Superscript

  • 19^th^
  • H~2~O

<ins>

++Inserted text++

<mark>

==Marked text==

Footnotes

Footnote 1 link1.

Footnote 2 link2.

Inline footnote^[Text of inline footnote] definition.

Duplicated footnote reference2.

Definition lists

Term 1

Definition 1 -with lazy continuation.

Term 2 with inline markup

Definition 2

{ some code, part of Definition 2 }
-

Third paragraph of definition 2.

Compact style:

Term 1 -~ Definition 1

Term 2 +

+

Block code “fences”

+
Sample text here...
+

Syntax highlighting

+
var foo = function (bar) {
+  return bar++;
+};
+
+console.log(foo(5));
+

Tables

+ + + + + + + + + + + + + + + + + + + + + +
OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.
+

Right aligned columns

+ + + + + + + + + + + + + + + + + + + + + +
OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.
+ +

link text

+

link with title

+

Autoconverted link https://github.com/nodeca/pica (enable linkify to see)

+

Images

+

Minion +Stormtroopocat

+

Like links, Images also have a footnote style syntax

+

Alt text

+

With a reference later in the document defining the URL location:

+

Plugins

+

The killer feature of markdown-it is very effective support of +syntax plugins.

+

Emojies

+
+

Classic markup: 😉 :crush: 😢 :tear: 😆 😋

+

Shortcuts (emoticons): :-) :-( 8-) ;)

+
+

see how to change output with twemoji.

+

Subscript / Superscript

+
    +
  • 19^th^
  • +
  • H~2~O
  • +
+

<ins>

+

++Inserted text++

+

<mark>

+

==Marked text==

+

Footnotes

+

Footnote 1 link1.

+

Footnote 2 link2.

+

Inline footnote^[Text of inline footnote] definition.

+

Duplicated footnote reference2.

+

Definition lists

+
+
Term 1
+
+

Definition 1 +with lazy continuation.

+
+
Term 2 with inline markup
+
+

Definition 2

+
{ some code, part of Definition 2 }
+
+

Third paragraph of definition 2.

+
+
+

Compact style:

+

Term 1 +~ Definition 1

+

Term 2 ~ Definition 2a -~ Definition 2b

Abbreviations

This is HTML abbreviation example.

It converts “HTML”, but keep intact partial entries like “xxxHTMLyyy” and so on.

*[HTML]: Hyper Text Markup Language

Custom containers

::: warning +~ Definition 2b

+

Abbreviations

+

This is HTML abbreviation example.

+

It converts “HTML”, but keep intact partial entries like “xxxHTMLyyy” and so on.

+

*[HTML]: Hyper Text Markup Language

+

Custom containers

+

::: warning here be dragons -:::


  1. Footnote can have markup

    and multiple paragraphs. ↩︎

  2. Footnote text. ↩︎ ↩︎

- \ No newline at end of file +:::

+
+
+
    +
  1. +

    Footnote can have markup

    +

    and multiple paragraphs. ↩︎

    +
  2. +
  3. +

    Footnote text. ↩︎ ↩︎

    +
  4. +
+
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/public/categories/blog/index.html b/public/categories/blog/index.html index 02dcd11..be5194d 100644 --- a/public/categories/blog/index.html +++ b/public/categories/blog/index.html @@ -1,44 +1,606 @@ -Blog | TailBliss

Blog

Blog Post 1

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -Blog

TailBliss

- -2 min -read
Blog Post 2

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -Blog

TailBliss

- -2 min -read
Blog Post 3

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -Blog

TailBliss

- -2 min -read
Blog Post 4

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -Blog

TailBliss

- -2 min -read
Blog Post 5

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -Blog

TailBliss

- -2 min -read
Blog Post 6

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -Blog

TailBliss

- -2 min -read
- \ No newline at end of file + + + + + + + + + + + + + + + Blog | TailBliss + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +

+ Blog +

+
+
+ +
+
+
+ +
+ + + + + + +
+
+ + Blog Post 1 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + Blog
+
+ +
+

+ TailBliss +

+
+ + + 2 min + read +
+
+
+
+
+ +
+ + + + + + +
+
+ + Blog Post 2 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + Blog
+
+ +
+

+ TailBliss +

+
+ + + 2 min + read +
+
+
+
+
+ +
+ + + + + + +
+
+ + Blog Post 3 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + Blog
+
+ +
+

+ TailBliss +

+
+ + + 2 min + read +
+
+
+
+
+ +
+ + + + + + +
+
+ + Blog Post 4 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + Blog
+
+ +
+

+ TailBliss +

+
+ + + 2 min + read +
+
+
+
+
+ +
+ + + + + + +
+
+ + Blog Post 5 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + Blog
+
+ +
+

+ TailBliss +

+
+ + + 2 min + read +
+
+
+
+
+ +
+ + + + + + +
+
+ + Blog Post 6 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + Blog
+
+ +
+

+ TailBliss +

+
+ + + 2 min + read +
+
+
+
+
+ +
+
+
+
+
+ + +
+
+ + + + + + + + + + \ No newline at end of file diff --git a/public/categories/blog/index.xml b/public/categories/blog/index.xml index 5a7d8a9..a633719 100644 --- a/public/categories/blog/index.xml +++ b/public/categories/blog/index.xml @@ -1 +1,65 @@ -Blog on TailBlisshttps://tailbliss.vercel.app/categories/blog/Recent content in Blog on TailBlissHugo -- gohugo.ioen-usSat, 18 Jun 2022 11:10:36 +0800Blog Post 1https://tailbliss.vercel.app/posts/blog-post-1/Sat, 18 Jun 2022 11:10:36 +0800https://tailbliss.vercel.app/posts/blog-post-1/Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.Blog Post 2https://tailbliss.vercel.app/posts/blog-post-2/Sat, 18 Dec 2021 11:10:36 +0800https://tailbliss.vercel.app/posts/blog-post-2/Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.Blog Post 3https://tailbliss.vercel.app/posts/blog-post-3/Sat, 18 Dec 2021 11:10:36 +0800https://tailbliss.vercel.app/posts/blog-post-3/Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.Blog Post 4https://tailbliss.vercel.app/posts/blog-post-4/Sat, 18 Dec 2021 11:10:36 +0800https://tailbliss.vercel.app/posts/blog-post-4/Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.Blog Post 5https://tailbliss.vercel.app/posts/blog-post-5/Sat, 18 Dec 2021 11:10:36 +0800https://tailbliss.vercel.app/posts/blog-post-5/Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.Blog Post 6https://tailbliss.vercel.app/posts/blog-post-6/Sat, 18 Dec 2021 11:10:36 +0800https://tailbliss.vercel.app/posts/blog-post-6/Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. \ No newline at end of file + + + + Blog on TailBliss + https://tailbliss.vercel.app/categories/blog/ + Recent content in Blog on TailBliss + Hugo -- gohugo.io + en-us + Sat, 18 Jun 2022 11:10:36 +0800 + + Blog Post 1 + https://tailbliss.vercel.app/posts/blog-post-1/ + Sat, 18 Jun 2022 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/blog-post-1/ + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. + + + + Blog Post 2 + https://tailbliss.vercel.app/posts/blog-post-2/ + Sat, 18 Dec 2021 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/blog-post-2/ + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. + + + + Blog Post 3 + https://tailbliss.vercel.app/posts/blog-post-3/ + Sat, 18 Dec 2021 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/blog-post-3/ + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. + + + + Blog Post 4 + https://tailbliss.vercel.app/posts/blog-post-4/ + Sat, 18 Dec 2021 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/blog-post-4/ + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. + + + + Blog Post 5 + https://tailbliss.vercel.app/posts/blog-post-5/ + Sat, 18 Dec 2021 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/blog-post-5/ + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. + + + + Blog Post 6 + https://tailbliss.vercel.app/posts/blog-post-6/ + Sat, 18 Dec 2021 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/blog-post-6/ + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. + + + + diff --git a/public/categories/blog/page/1/index.html b/public/categories/blog/page/1/index.html index d5f5373..be914ff 100644 --- a/public/categories/blog/page/1/index.html +++ b/public/categories/blog/page/1/index.html @@ -1 +1,10 @@ -https://tailbliss.vercel.app/categories/blog/ \ No newline at end of file + + + + https://tailbliss.vercel.app/categories/blog/ + + + + + + diff --git a/public/categories/index.html b/public/categories/index.html index c7fe9b5..b5e5b1e 100644 --- a/public/categories/index.html +++ b/public/categories/index.html @@ -1,20 +1,388 @@ -Categories | TailBliss

Categories

Tags:

- -0 min -read
Tags:

- -0 min -read
- \ No newline at end of file + + + + + + + + + + + + + + + Categories | TailBliss + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +

+ Categories +

+
+
+ +
+
+
+ +
+ +
+
+ + Blog + +

+ +

+
+
+ Tags: +
+
+ +
+

+ +

+
+ + + 0 min + read +
+
+
+
+
+ +
+ +
+
+ + News + +

+ +

+
+
+ Tags: +
+
+ +
+

+ +

+
+ + + 0 min + read +
+
+
+
+
+ +
+
+
+
+
+ + +
+
+ + + + + + + + + + \ No newline at end of file diff --git a/public/categories/index.xml b/public/categories/index.xml index e8b5512..8f1f305 100644 --- a/public/categories/index.xml +++ b/public/categories/index.xml @@ -1 +1,29 @@ -Categories on TailBlisshttps://tailbliss.vercel.app/categories/Recent content in Categories on TailBlissHugo -- gohugo.ioen-usSat, 18 Jun 2022 11:10:36 +0800Bloghttps://tailbliss.vercel.app/categories/blog/Sat, 18 Jun 2022 11:10:36 +0800https://tailbliss.vercel.app/categories/blog/Newshttps://tailbliss.vercel.app/categories/news/Wed, 18 May 2022 11:10:36 +0800https://tailbliss.vercel.app/categories/news/ \ No newline at end of file + + + + Categories on TailBliss + https://tailbliss.vercel.app/categories/ + Recent content in Categories on TailBliss + Hugo -- gohugo.io + en-us + Sat, 18 Jun 2022 11:10:36 +0800 + + Blog + https://tailbliss.vercel.app/categories/blog/ + Sat, 18 Jun 2022 11:10:36 +0800 + + https://tailbliss.vercel.app/categories/blog/ + + + + + News + https://tailbliss.vercel.app/categories/news/ + Wed, 18 May 2022 11:10:36 +0800 + + https://tailbliss.vercel.app/categories/news/ + + + + + diff --git a/public/categories/news/index.html b/public/categories/news/index.html index 29a374f..550e381 100644 --- a/public/categories/news/index.html +++ b/public/categories/news/index.html @@ -1,44 +1,606 @@ -News | TailBliss

News

News Post 1

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -News

TailBliss

- -2 min -read
News Post 2

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -News

TailBliss

- -2 min -read
News Post 4

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -News

TailBliss

- -2 min -read
News Post 5

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -News

TailBliss

- -2 min -read
News Post 6

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -News

TailBliss

- -2 min -read
News Post 3

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -News

TailBliss

- -2 min -read
- \ No newline at end of file + + + + + + + + + + + + + + + News | TailBliss + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +

+ News +

+
+
+ +
+
+
+ +
+ + + + + + +
+
+ + News Post 1 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + News
+
+ +
+

+ TailBliss +

+
+ + + 2 min + read +
+
+
+
+
+ +
+ + + + + + +
+
+ + News Post 2 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + News
+
+ +
+

+ TailBliss +

+
+ + + 2 min + read +
+
+
+
+
+ +
+ + + + + + +
+
+ + News Post 4 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + News
+
+ +
+

+ TailBliss +

+
+ + + 2 min + read +
+
+
+
+
+ +
+ + + + + + +
+
+ + News Post 5 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + News
+
+ +
+

+ TailBliss +

+
+ + + 2 min + read +
+
+
+
+
+ +
+ + + + + + +
+
+ + News Post 6 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + News
+
+ +
+

+ TailBliss +

+
+ + + 2 min + read +
+
+
+
+
+ +
+ + + + + + +
+
+ + News Post 3 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + News
+
+ +
+

+ TailBliss +

+
+ + + 2 min + read +
+
+
+
+
+ +
+
+
+
+
+ + +
+
+ + + + + + + + + + \ No newline at end of file diff --git a/public/categories/news/index.xml b/public/categories/news/index.xml index 10c38f3..1cc939b 100644 --- a/public/categories/news/index.xml +++ b/public/categories/news/index.xml @@ -1 +1,65 @@ -News on TailBlisshttps://tailbliss.vercel.app/categories/news/Recent content in News on TailBlissHugo -- gohugo.ioen-usWed, 18 May 2022 11:10:36 +0800News Post 1https://tailbliss.vercel.app/posts/news-post-1/Wed, 18 May 2022 11:10:36 +0800https://tailbliss.vercel.app/posts/news-post-1/Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.News Post 2https://tailbliss.vercel.app/posts/news-post-2/Mon, 18 Apr 2022 11:10:36 +0800https://tailbliss.vercel.app/posts/news-post-2/Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.News Post 4https://tailbliss.vercel.app/posts/news-post-4/Fri, 18 Mar 2022 11:10:36 +0800https://tailbliss.vercel.app/posts/news-post-4/<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.</p>News Post 5https://tailbliss.vercel.app/posts/news-post-5/Fri, 18 Mar 2022 11:10:36 +0800https://tailbliss.vercel.app/posts/news-post-5/<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.</p>News Post 6https://tailbliss.vercel.app/posts/news-post-6/Fri, 18 Mar 2022 11:10:36 +0800https://tailbliss.vercel.app/posts/news-post-6/<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.</p>News Post 3https://tailbliss.vercel.app/posts/news-post-3/Sat, 18 Dec 2021 11:10:36 +0800https://tailbliss.vercel.app/posts/news-post-3/Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. \ No newline at end of file + + + + News on TailBliss + https://tailbliss.vercel.app/categories/news/ + Recent content in News on TailBliss + Hugo -- gohugo.io + en-us + Wed, 18 May 2022 11:10:36 +0800 + + News Post 1 + https://tailbliss.vercel.app/posts/news-post-1/ + Wed, 18 May 2022 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/news-post-1/ + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. + + + + News Post 2 + https://tailbliss.vercel.app/posts/news-post-2/ + Mon, 18 Apr 2022 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/news-post-2/ + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. + + + + News Post 4 + https://tailbliss.vercel.app/posts/news-post-4/ + Fri, 18 Mar 2022 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/news-post-4/ + <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.</p> + + + + News Post 5 + https://tailbliss.vercel.app/posts/news-post-5/ + Fri, 18 Mar 2022 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/news-post-5/ + <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.</p> + + + + News Post 6 + https://tailbliss.vercel.app/posts/news-post-6/ + Fri, 18 Mar 2022 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/news-post-6/ + <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.</p> + + + + News Post 3 + https://tailbliss.vercel.app/posts/news-post-3/ + Sat, 18 Dec 2021 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/news-post-3/ + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. + + + + diff --git a/public/categories/news/page/1/index.html b/public/categories/news/page/1/index.html index 588f24d..0c63747 100644 --- a/public/categories/news/page/1/index.html +++ b/public/categories/news/page/1/index.html @@ -1 +1,10 @@ -https://tailbliss.vercel.app/categories/news/ \ No newline at end of file + + + + https://tailbliss.vercel.app/categories/news/ + + + + + + diff --git a/public/categories/page/1/index.html b/public/categories/page/1/index.html index bf2c364..dd6b88e 100644 --- a/public/categories/page/1/index.html +++ b/public/categories/page/1/index.html @@ -1 +1,10 @@ -https://tailbliss.vercel.app/categories/ \ No newline at end of file + + + + https://tailbliss.vercel.app/categories/ + + + + + + diff --git a/public/contact/index.html b/public/contact/index.html index a29ce2b..ca4c68f 100644 --- a/public/contact/index.html +++ b/public/contact/index.html @@ -1,17 +1,330 @@ -Contact | TailBliss

Contact

Got a technical issue? Want to send feedback about a beta feature? Need details about our Business plan? Let us know.

-
-
-
- \ No newline at end of file + + + + + + + + + + + + + + + Contact | TailBliss + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +

+ Contact +

+
+
+
+
+ +
+
+ +
+ +
+
+

Got a technical issue? Want to send feedback about a beta feature? Need details about our Business plan? Let us know.

+
+
+ + +
+
+ + +
+
+ + +
+
+ +
+
+
+
+ +
+
+ + + + + + + + + + \ No newline at end of file diff --git a/public/index.html b/public/index.html index c3cecdf..07c8f13 100644 --- a/public/index.html +++ b/public/index.html @@ -1,67 +1,764 @@ -TailBliss is Hugo Starter | TailBliss

TailBliss

Super Fast, and Flexible

What's new -Just shipped version 0.1.0

A Hugo theme built with love, using TailwindCSS 3, Apline.JS, and Hugo -Pipes. Images are optimized for use with Hugo Pipes for WebP format.

TailBliss Hero
TailBliss - Our Mission ->
Workcation

Tincidunt integer commodo, cursus etiam -aliquam neque, et. Consectetur pretium in volutpat, diam. -Montes, magna cursus nulla feugiat dignissim id lobortis -amet.

John Doe, CEO at TailBliss

Our mission

Sagittis scelerisque nulla cursus in enim consectetur -quam. Dictum urna sed consectetur neque tristique pellentesque. Blandit -amet, sed aenean erat arcu morbi. Cursus faucibus nunc nisl netus morbi -vel porttitor vitae ut. Amet vitae fames senectus vitae.

Sollicitudin tristique eros erat odio sed -vitae, consequat turpis elementum. Lorem nibh vel, eget pretium arcu -vitae. Eros eu viverra donec ut volutpat donec laoreet quam urna. -Sollicitudin tristique eroserat odio sed vitae, consequat turpis elementum. Lorem nibh vel, -eget pretium arcu vitae. Eros eu viverra donec ut volutpat donec laoreet quam urna.

Rhoncus nisl, libero egestas diam fermentum -dui. At quis tincidunt vel ultricies. Vulputate aliquet velit faucibus semper. -Pellentesque in venenatis vestibulum consectetur nibh id. In id ut tempus egestas. Enim sit -aliquam nec, a. Morbi enim fermentum lacus in. Viverra.

Just in time for Hacktoberfest with JIT Tailwind.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur at purus non enim commodo -tincidunt vel in nulla. Aenean pretium dolor non ultricies bibendum. Etiam quis blandit -enim. Nunc condimentum ut lorem in faucibus. Phasellus varius ligula et commodo tristique. -Nunc sodales nisl nec -laoreet vehicula. Donec velit nibh, sollicitudin at nulla a, egestas dignissim eros. Sed -lacinia hendrerit interdum. -Vestibulum pellentesque sem venenatis nisl tempor accumsan sit amet tempus felis. Mauris leo -diam, porttitor nec -bibendum id, tempus ac nulla. Etiam congue ornare erat at convallis. Donec in nisi dapibus, -mattis risus vel, imperdiet enim. Donec -fermentum sit amet tortor nec tincidunt. Nam nec lectus tortor. Nunc sit amet laoreet orci, -porta ornare massa. Phasellus -eget lorem mi. Nam eleifend ultricies sapien, quis mollis leo bibendum at. Quisque viverra -lorem sit amet magna aliquet, et dignissim arcu eleifend.

TailBliss Hacktoberfest Image
Transistor
Mirage
Tuple
Laravel
StaticKit
Workcation

Backed by world-renowned investors

Sagittis scelerisque nulla cursus in enim -consectetur quam. Dictum urna sed consectetur neque tristique pellentesque. Blandit amet, sed -aenean erat arcu morbi. Cursus faucibus nunc nisl netus morbi vel porttitor vitae ut. Amet vitae -fames senectus vitae.

From the blog

Lorem ipsum dolor -sit amet consectetur, -adipisicing elit. Ipsa libero labore natus atque, ducimus sed.

Blog Post 1

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -Blog
TailBliss -

TailBliss

- -2 -min read
News Post 1

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -News
TailBliss -

TailBliss

- -2 -min read
News Post 2

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -News
TailBliss -

TailBliss

- -2 -min read

Stay Up to Date

Sagittis -scelerisque nulla cursus in enim consectetur quam. Dictum urna sed -consectetur neque tristique pellentesque.

-
- \ No newline at end of file + + + + + + + + + + + + + + + + TailBliss is Hugo Starter | TailBliss + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+
+
+

+ TailBliss

+

+ Super Fast, and Flexible +

+ + + What's new + + + Just shipped version 0.1.0 + + + + +

+ A Hugo theme built with love, using TailwindCSS 3, Apline.JS, and Hugo + Pipes. Images are optimized for use with Hugo Pipes for WebP format.

+
+
+ + + + + + TailBliss Hero +
+
+
+
+ + + + +
+
+
+ +
+ +
+ + + + TailBliss - Our Mission + > + +
+
+
+
+
+ Workcation +
+
+
+ +

Tincidunt integer commodo, cursus etiam + aliquam neque, et. Consectetur pretium in volutpat, diam. + Montes, magna cursus nulla feugiat dignissim id lobortis + amet. +

+
+ +
+

+ John Doe, CEO at TailBliss +

+
+
+
+
+
+
+ +
+ +
+

+ Our mission

+
+

Sagittis scelerisque nulla cursus in enim consectetur + quam. Dictum urna sed consectetur neque tristique pellentesque. Blandit + amet, sed aenean erat arcu morbi. Cursus faucibus nunc nisl netus morbi + vel porttitor vitae ut. Amet vitae fames senectus vitae. +

+

Sollicitudin tristique eros erat odio sed + vitae, consequat turpis elementum. Lorem nibh vel, eget pretium arcu + vitae. Eros eu viverra donec ut volutpat donec laoreet quam urna. + Sollicitudin tristique eroserat odio sed vitae, consequat turpis elementum. Lorem nibh vel, + eget pretium arcu vitae. Eros eu viverra donec ut volutpat donec laoreet quam urna. +

+

Rhoncus nisl, libero egestas diam fermentum + dui. At quis tincidunt vel ultricies. Vulputate aliquet velit faucibus semper. + Pellentesque in venenatis vestibulum consectetur nibh id. In id ut tempus egestas. Enim sit + aliquam nec, a. Morbi enim fermentum lacus in. Viverra. +

+
+
+
+
+
+ + +
+
+
+
+
+

+ Just in time for Hacktoberfest with JIT Tailwind. +

+

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur at purus non enim commodo + tincidunt vel in nulla. Aenean pretium dolor non ultricies bibendum. Etiam quis blandit + enim. Nunc condimentum ut lorem in faucibus. Phasellus varius ligula et commodo tristique. + Nunc sodales nisl nec + laoreet vehicula. Donec velit nibh, sollicitudin at nulla a, egestas dignissim eros. Sed + lacinia hendrerit interdum. + Vestibulum pellentesque sem venenatis nisl tempor accumsan sit amet tempus felis. Mauris leo + diam, porttitor nec + bibendum id, tempus ac nulla. Etiam congue ornare erat at convallis. Donec in nisi dapibus, + mattis risus vel, imperdiet enim. Donec + fermentum sit amet tortor nec tincidunt. Nam nec lectus tortor. Nunc sit amet laoreet orci, + porta ornare massa. Phasellus + eget lorem mi. Nam eleifend ultricies sapien, quis mollis leo bibendum at. Quisque viverra + lorem sit amet magna aliquet, et dignissim arcu eleifend. +

+
+
+
+
+ +
+
+ +
+ + + + + + + + TailBliss Hacktoberfest Image +
+
+
+
+ + +
+
+
+
+ Transistor +
+ +
+ Mirage +
+ +
+ Tuple +
+ +
+ Laravel +
+ +
+ StaticKit +
+ +
+ Workcation +
+
+
+

+ Backed by world-renowned investors +

+

Sagittis scelerisque nulla cursus in enim + consectetur quam. Dictum urna sed consectetur neque tristique pellentesque. Blandit amet, sed + aenean erat arcu morbi. Cursus faucibus nunc nisl netus morbi vel porttitor vitae ut. Amet vitae + fames senectus vitae. +

+ +
+
+
+ +
+
+
+
+
+
+

+ From the blog +

+

Lorem ipsum dolor + sit amet consectetur, + adipisicing elit. Ipsa libero labore natus atque, ducimus sed.

+
+ +
+
+
+ +
+ + + + + + +
+
+ + Blog Post 1 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + Blog
+
+
+ TailBliss + + + + + + +
+
+

+ TailBliss +

+
+ + + 2 + min read +
+
+
+
+
+ +
+ + + + + + +
+
+ + News Post 1 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + News
+
+
+ TailBliss + + + + + + +
+
+

+ TailBliss +

+
+ + + 2 + min read +
+
+
+
+
+ +
+ + + + + + +
+
+ + News Post 2 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + News
+
+
+ TailBliss + + + + + + +
+
+

+ TailBliss +

+
+ + + 2 + min read +
+
+
+
+
+ +
+
+
+
+
+ + +
+ +
+
+ +
+
+

+ Stay Up to Date +

+

Sagittis + scelerisque nulla cursus in enim consectetur quam. Dictum urna sed + consectetur neque tristique pellentesque.

+
+
+
+ + +
+
+ +
+
+
+
+
+
+ +
+ + + + + + + + + + \ No newline at end of file diff --git a/public/index.xml b/public/index.xml index 6d3faad..eac9265 100644 --- a/public/index.xml +++ b/public/index.xml @@ -1,4 +1,73 @@ -TailBlisshttps://tailbliss.vercel.app/Recent content on TailBlissHugo -- gohugo.ioen-usSat, 18 Jun 2022 11:10:36 +0800Blog Post 1https://tailbliss.vercel.app/posts/blog-post-1/Sat, 18 Jun 2022 11:10:36 +0800https://tailbliss.vercel.app/posts/blog-post-1/Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.News Post 1https://tailbliss.vercel.app/posts/news-post-1/Wed, 18 May 2022 11:10:36 +0800https://tailbliss.vercel.app/posts/news-post-1/Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.News Post 2https://tailbliss.vercel.app/posts/news-post-2/Mon, 18 Apr 2022 11:10:36 +0800https://tailbliss.vercel.app/posts/news-post-2/Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.News Post 4https://tailbliss.vercel.app/posts/news-post-4/Fri, 18 Mar 2022 11:10:36 +0800https://tailbliss.vercel.app/posts/news-post-4/<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.</p>News Post 5https://tailbliss.vercel.app/posts/news-post-5/Fri, 18 Mar 2022 11:10:36 +0800https://tailbliss.vercel.app/posts/news-post-5/<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.</p>News Post 6https://tailbliss.vercel.app/posts/news-post-6/Fri, 18 Mar 2022 11:10:36 +0800https://tailbliss.vercel.app/posts/news-post-6/<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.</p>Abouthttps://tailbliss.vercel.app/about/Sat, 18 Dec 2021 11:10:36 +0800https://tailbliss.vercel.app/about/h1 Heading 😊 h2 Heading h3 Heading h4 Heading h5 Heading h6 Heading Horizontal Rules Typographic replacements Enable typographer option to see result. + + + + TailBliss + https://tailbliss.vercel.app/ + Recent content on TailBliss + Hugo -- gohugo.io + en-us + Sat, 18 Jun 2022 11:10:36 +0800 + + Blog Post 1 + https://tailbliss.vercel.app/posts/blog-post-1/ + Sat, 18 Jun 2022 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/blog-post-1/ + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. + + + + News Post 1 + https://tailbliss.vercel.app/posts/news-post-1/ + Wed, 18 May 2022 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/news-post-1/ + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. + + + + News Post 2 + https://tailbliss.vercel.app/posts/news-post-2/ + Mon, 18 Apr 2022 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/news-post-2/ + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. + + + + News Post 4 + https://tailbliss.vercel.app/posts/news-post-4/ + Fri, 18 Mar 2022 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/news-post-4/ + <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.</p> + + + + News Post 5 + https://tailbliss.vercel.app/posts/news-post-5/ + Fri, 18 Mar 2022 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/news-post-5/ + <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.</p> + + + + News Post 6 + https://tailbliss.vercel.app/posts/news-post-6/ + Fri, 18 Mar 2022 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/news-post-6/ + <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.</p> + + + + About + https://tailbliss.vercel.app/about/ + Sat, 18 Dec 2021 11:10:36 +0800 + + https://tailbliss.vercel.app/about/ + h1 Heading 😊 h2 Heading h3 Heading h4 Heading h5 Heading h6 Heading Horizontal Rules Typographic replacements Enable typographer option to see result. (c) (C) (r) (R) (tm) (TM) (p) (P) +- test.. test&hellip; test&hellip;.. test?&hellip;.. test!&hellip;. !!!!!! ???? ,, &ndash; &mdash; @@ -8,11 +77,85 @@ This is bold text This is italic text This is italic text Strikethrough -Blockquotes Blockquotes can also be nested&hellip;Blog Post 2https://tailbliss.vercel.app/posts/blog-post-2/Sat, 18 Dec 2021 11:10:36 +0800https://tailbliss.vercel.app/posts/blog-post-2/Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.Blog Post 3https://tailbliss.vercel.app/posts/blog-post-3/Sat, 18 Dec 2021 11:10:36 +0800https://tailbliss.vercel.app/posts/blog-post-3/Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.Blog Post 4https://tailbliss.vercel.app/posts/blog-post-4/Sat, 18 Dec 2021 11:10:36 +0800https://tailbliss.vercel.app/posts/blog-post-4/Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.Blog Post 5https://tailbliss.vercel.app/posts/blog-post-5/Sat, 18 Dec 2021 11:10:36 +0800https://tailbliss.vercel.app/posts/blog-post-5/Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.Blog Post 6https://tailbliss.vercel.app/posts/blog-post-6/Sat, 18 Dec 2021 11:10:36 +0800https://tailbliss.vercel.app/posts/blog-post-6/Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.Contacthttps://tailbliss.vercel.app/contact/Sat, 18 Dec 2021 03:10:36 +0000https://tailbliss.vercel.app/contact/ Got a technical issue? Want to send feedback about a beta feature? Need details about our Business plan? Let us know. -Your Email: Subject: Your message: Send MessageNews Post 3https://tailbliss.vercel.app/posts/news-post-3/Sat, 18 Dec 2021 11:10:36 +0800https://tailbliss.vercel.app/posts/news-post-3/Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.Prosehttps://tailbliss.vercel.app/prose/Sat, 18 Dec 2021 11:10:36 +0800https://tailbliss.vercel.app/prose/@tailwindcss/typography View on GitHub! +Blockquotes Blockquotes can also be nested&hellip; + + + + Blog Post 2 + https://tailbliss.vercel.app/posts/blog-post-2/ + Sat, 18 Dec 2021 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/blog-post-2/ + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. + + + + Blog Post 3 + https://tailbliss.vercel.app/posts/blog-post-3/ + Sat, 18 Dec 2021 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/blog-post-3/ + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. + + + + Blog Post 4 + https://tailbliss.vercel.app/posts/blog-post-4/ + Sat, 18 Dec 2021 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/blog-post-4/ + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. + + + + Blog Post 5 + https://tailbliss.vercel.app/posts/blog-post-5/ + Sat, 18 Dec 2021 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/blog-post-5/ + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. + + + + Blog Post 6 + https://tailbliss.vercel.app/posts/blog-post-6/ + Sat, 18 Dec 2021 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/blog-post-6/ + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. + + + + Contact + https://tailbliss.vercel.app/contact/ + Sat, 18 Dec 2021 03:10:36 +0000 + + https://tailbliss.vercel.app/contact/ + Got a technical issue? Want to send feedback about a beta feature? Need details about our Business plan? Let us know. +Your Email: Subject: Your message: Send Message + + + + News Post 3 + https://tailbliss.vercel.app/posts/news-post-3/ + Sat, 18 Dec 2021 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/news-post-3/ + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. + + + + Prose + https://tailbliss.vercel.app/prose/ + Sat, 18 Dec 2021 11:10:36 +0800 + + https://tailbliss.vercel.app/prose/ + @tailwindcss/typography View on GitHub! Beautiful typographic defaults for HTML you don&rsquo;t control. The official Tailwind CSS Typography plugin provides a set of prose classes you can use to add beautiful typographic defaults to any vanilla HTML you don’t control, like HTML rendered from Markdown, or pulled from a CMS. Tailwind CSS IntelliSense extension for Visual Studio Code -&lt;article class=&#34;prose lg:prose-xl&#34;&gt; -{{ markdown }} -&lt;/article&gt; To see what it looks like in action, check out our live demo on Tailwind Play. \ No newline at end of file +&lt;article class=&#34;prose lg:prose-xl&#34;&gt; {{ markdown }} &lt;/article&gt; To see what it looks like in action, check out our live demo on Tailwind Play. + + + + diff --git a/public/page/1/index.html b/public/page/1/index.html index 0634bc5..0333525 100644 --- a/public/page/1/index.html +++ b/public/page/1/index.html @@ -1 +1,10 @@ -https://tailbliss.vercel.app/ \ No newline at end of file + + + + https://tailbliss.vercel.app/ + + + + + + diff --git a/public/page/2/index.html b/public/page/2/index.html index 3593e8f..845d916 100644 --- a/public/page/2/index.html +++ b/public/page/2/index.html @@ -1,67 +1,764 @@ -TailBliss is Hugo Starter | TailBliss

TailBliss

Super Fast, and Flexible

What's new -Just shipped version 0.1.0

A Hugo theme built with love, using TailwindCSS 3, Apline.JS, and Hugo -Pipes. Images are optimized for use with Hugo Pipes for WebP format.

TailBliss Hero
TailBliss - Our Mission ->
Workcation

Tincidunt integer commodo, cursus etiam -aliquam neque, et. Consectetur pretium in volutpat, diam. -Montes, magna cursus nulla feugiat dignissim id lobortis -amet.

John Doe, CEO at TailBliss

Our mission

Sagittis scelerisque nulla cursus in enim consectetur -quam. Dictum urna sed consectetur neque tristique pellentesque. Blandit -amet, sed aenean erat arcu morbi. Cursus faucibus nunc nisl netus morbi -vel porttitor vitae ut. Amet vitae fames senectus vitae.

Sollicitudin tristique eros erat odio sed -vitae, consequat turpis elementum. Lorem nibh vel, eget pretium arcu -vitae. Eros eu viverra donec ut volutpat donec laoreet quam urna. -Sollicitudin tristique eroserat odio sed vitae, consequat turpis elementum. Lorem nibh vel, -eget pretium arcu vitae. Eros eu viverra donec ut volutpat donec laoreet quam urna.

Rhoncus nisl, libero egestas diam fermentum -dui. At quis tincidunt vel ultricies. Vulputate aliquet velit faucibus semper. -Pellentesque in venenatis vestibulum consectetur nibh id. In id ut tempus egestas. Enim sit -aliquam nec, a. Morbi enim fermentum lacus in. Viverra.

Just in time for Hacktoberfest with JIT Tailwind.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur at purus non enim commodo -tincidunt vel in nulla. Aenean pretium dolor non ultricies bibendum. Etiam quis blandit -enim. Nunc condimentum ut lorem in faucibus. Phasellus varius ligula et commodo tristique. -Nunc sodales nisl nec -laoreet vehicula. Donec velit nibh, sollicitudin at nulla a, egestas dignissim eros. Sed -lacinia hendrerit interdum. -Vestibulum pellentesque sem venenatis nisl tempor accumsan sit amet tempus felis. Mauris leo -diam, porttitor nec -bibendum id, tempus ac nulla. Etiam congue ornare erat at convallis. Donec in nisi dapibus, -mattis risus vel, imperdiet enim. Donec -fermentum sit amet tortor nec tincidunt. Nam nec lectus tortor. Nunc sit amet laoreet orci, -porta ornare massa. Phasellus -eget lorem mi. Nam eleifend ultricies sapien, quis mollis leo bibendum at. Quisque viverra -lorem sit amet magna aliquet, et dignissim arcu eleifend.

TailBliss Hacktoberfest Image
Transistor
Mirage
Tuple
Laravel
StaticKit
Workcation

Backed by world-renowned investors

Sagittis scelerisque nulla cursus in enim -consectetur quam. Dictum urna sed consectetur neque tristique pellentesque. Blandit amet, sed -aenean erat arcu morbi. Cursus faucibus nunc nisl netus morbi vel porttitor vitae ut. Amet vitae -fames senectus vitae.

From the blog

Lorem ipsum dolor -sit amet consectetur, -adipisicing elit. Ipsa libero labore natus atque, ducimus sed.

News Post 4

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -News
TailBliss -

TailBliss

- -2 -min read
News Post 5

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -News
TailBliss -

TailBliss

- -2 -min read
News Post 6

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -News
TailBliss -

TailBliss

- -2 -min read

Stay Up to Date

Sagittis -scelerisque nulla cursus in enim consectetur quam. Dictum urna sed -consectetur neque tristique pellentesque.

-
- \ No newline at end of file + + + + + + + + + + + + + + + + TailBliss is Hugo Starter | TailBliss + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+
+
+

+ TailBliss

+

+ Super Fast, and Flexible +

+ + + What's new + + + Just shipped version 0.1.0 + + + + +

+ A Hugo theme built with love, using TailwindCSS 3, Apline.JS, and Hugo + Pipes. Images are optimized for use with Hugo Pipes for WebP format.

+
+
+ + + + + + TailBliss Hero +
+
+
+
+ + + + +
+
+
+ +
+ +
+ + + + TailBliss - Our Mission + > + +
+
+
+
+
+ Workcation +
+
+
+ +

Tincidunt integer commodo, cursus etiam + aliquam neque, et. Consectetur pretium in volutpat, diam. + Montes, magna cursus nulla feugiat dignissim id lobortis + amet. +

+
+ +
+

+ John Doe, CEO at TailBliss +

+
+
+
+
+
+
+ +
+ +
+

+ Our mission

+
+

Sagittis scelerisque nulla cursus in enim consectetur + quam. Dictum urna sed consectetur neque tristique pellentesque. Blandit + amet, sed aenean erat arcu morbi. Cursus faucibus nunc nisl netus morbi + vel porttitor vitae ut. Amet vitae fames senectus vitae. +

+

Sollicitudin tristique eros erat odio sed + vitae, consequat turpis elementum. Lorem nibh vel, eget pretium arcu + vitae. Eros eu viverra donec ut volutpat donec laoreet quam urna. + Sollicitudin tristique eroserat odio sed vitae, consequat turpis elementum. Lorem nibh vel, + eget pretium arcu vitae. Eros eu viverra donec ut volutpat donec laoreet quam urna. +

+

Rhoncus nisl, libero egestas diam fermentum + dui. At quis tincidunt vel ultricies. Vulputate aliquet velit faucibus semper. + Pellentesque in venenatis vestibulum consectetur nibh id. In id ut tempus egestas. Enim sit + aliquam nec, a. Morbi enim fermentum lacus in. Viverra. +

+
+
+
+
+
+ + +
+
+
+
+
+

+ Just in time for Hacktoberfest with JIT Tailwind. +

+

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur at purus non enim commodo + tincidunt vel in nulla. Aenean pretium dolor non ultricies bibendum. Etiam quis blandit + enim. Nunc condimentum ut lorem in faucibus. Phasellus varius ligula et commodo tristique. + Nunc sodales nisl nec + laoreet vehicula. Donec velit nibh, sollicitudin at nulla a, egestas dignissim eros. Sed + lacinia hendrerit interdum. + Vestibulum pellentesque sem venenatis nisl tempor accumsan sit amet tempus felis. Mauris leo + diam, porttitor nec + bibendum id, tempus ac nulla. Etiam congue ornare erat at convallis. Donec in nisi dapibus, + mattis risus vel, imperdiet enim. Donec + fermentum sit amet tortor nec tincidunt. Nam nec lectus tortor. Nunc sit amet laoreet orci, + porta ornare massa. Phasellus + eget lorem mi. Nam eleifend ultricies sapien, quis mollis leo bibendum at. Quisque viverra + lorem sit amet magna aliquet, et dignissim arcu eleifend. +

+
+
+
+
+ +
+
+ +
+ + + + + + + + TailBliss Hacktoberfest Image +
+
+
+
+ + +
+
+
+
+ Transistor +
+ +
+ Mirage +
+ +
+ Tuple +
+ +
+ Laravel +
+ +
+ StaticKit +
+ +
+ Workcation +
+
+
+

+ Backed by world-renowned investors +

+

Sagittis scelerisque nulla cursus in enim + consectetur quam. Dictum urna sed consectetur neque tristique pellentesque. Blandit amet, sed + aenean erat arcu morbi. Cursus faucibus nunc nisl netus morbi vel porttitor vitae ut. Amet vitae + fames senectus vitae. +

+ +
+
+
+ +
+
+
+
+
+
+

+ From the blog +

+

Lorem ipsum dolor + sit amet consectetur, + adipisicing elit. Ipsa libero labore natus atque, ducimus sed.

+
+ +
+
+
+ +
+ + + + + + +
+
+ + News Post 4 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + News
+
+
+ TailBliss + + + + + + +
+
+

+ TailBliss +

+
+ + + 2 + min read +
+
+
+
+
+ +
+ + + + + + +
+
+ + News Post 5 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + News
+
+
+ TailBliss + + + + + + +
+
+

+ TailBliss +

+
+ + + 2 + min read +
+
+
+
+
+ +
+ + + + + + +
+
+ + News Post 6 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + News
+
+
+ TailBliss + + + + + + +
+
+

+ TailBliss +

+
+ + + 2 + min read +
+
+
+
+
+ +
+
+
+
+
+ + +
+ +
+
+ +
+
+

+ Stay Up to Date +

+

Sagittis + scelerisque nulla cursus in enim consectetur quam. Dictum urna sed + consectetur neque tristique pellentesque.

+
+
+
+ + +
+
+ +
+
+
+
+
+
+ +
+ + + + + + + + + + \ No newline at end of file diff --git a/public/page/3/index.html b/public/page/3/index.html index 6b4ad96..5c68599 100644 --- a/public/page/3/index.html +++ b/public/page/3/index.html @@ -1,65 +1,758 @@ -TailBliss is Hugo Starter | TailBliss

TailBliss

Super Fast, and Flexible

What's new -Just shipped version 0.1.0

A Hugo theme built with love, using TailwindCSS 3, Apline.JS, and Hugo -Pipes. Images are optimized for use with Hugo Pipes for WebP format.

TailBliss Hero
TailBliss - Our Mission ->
Workcation

Tincidunt integer commodo, cursus etiam -aliquam neque, et. Consectetur pretium in volutpat, diam. -Montes, magna cursus nulla feugiat dignissim id lobortis -amet.

John Doe, CEO at TailBliss

Our mission

Sagittis scelerisque nulla cursus in enim consectetur -quam. Dictum urna sed consectetur neque tristique pellentesque. Blandit -amet, sed aenean erat arcu morbi. Cursus faucibus nunc nisl netus morbi -vel porttitor vitae ut. Amet vitae fames senectus vitae.

Sollicitudin tristique eros erat odio sed -vitae, consequat turpis elementum. Lorem nibh vel, eget pretium arcu -vitae. Eros eu viverra donec ut volutpat donec laoreet quam urna. -Sollicitudin tristique eroserat odio sed vitae, consequat turpis elementum. Lorem nibh vel, -eget pretium arcu vitae. Eros eu viverra donec ut volutpat donec laoreet quam urna.

Rhoncus nisl, libero egestas diam fermentum -dui. At quis tincidunt vel ultricies. Vulputate aliquet velit faucibus semper. -Pellentesque in venenatis vestibulum consectetur nibh id. In id ut tempus egestas. Enim sit -aliquam nec, a. Morbi enim fermentum lacus in. Viverra.

Just in time for Hacktoberfest with JIT Tailwind.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur at purus non enim commodo -tincidunt vel in nulla. Aenean pretium dolor non ultricies bibendum. Etiam quis blandit -enim. Nunc condimentum ut lorem in faucibus. Phasellus varius ligula et commodo tristique. -Nunc sodales nisl nec -laoreet vehicula. Donec velit nibh, sollicitudin at nulla a, egestas dignissim eros. Sed -lacinia hendrerit interdum. -Vestibulum pellentesque sem venenatis nisl tempor accumsan sit amet tempus felis. Mauris leo -diam, porttitor nec -bibendum id, tempus ac nulla. Etiam congue ornare erat at convallis. Donec in nisi dapibus, -mattis risus vel, imperdiet enim. Donec -fermentum sit amet tortor nec tincidunt. Nam nec lectus tortor. Nunc sit amet laoreet orci, -porta ornare massa. Phasellus -eget lorem mi. Nam eleifend ultricies sapien, quis mollis leo bibendum at. Quisque viverra -lorem sit amet magna aliquet, et dignissim arcu eleifend.

TailBliss Hacktoberfest Image
Transistor
Mirage
Tuple
Laravel
StaticKit
Workcation

Backed by world-renowned investors

Sagittis scelerisque nulla cursus in enim -consectetur quam. Dictum urna sed consectetur neque tristique pellentesque. Blandit amet, sed -aenean erat arcu morbi. Cursus faucibus nunc nisl netus morbi vel porttitor vitae ut. Amet vitae -fames senectus vitae.

From the blog

Lorem ipsum dolor -sit amet consectetur, -adipisicing elit. Ipsa libero labore natus atque, ducimus sed.

Tags:

- -2 -min read
Blog Post 2

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -Blog
TailBliss -

TailBliss

- -2 -min read
Blog Post 3

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -Blog
TailBliss -

TailBliss

- -2 -min read

Stay Up to Date

Sagittis -scelerisque nulla cursus in enim consectetur quam. Dictum urna sed -consectetur neque tristique pellentesque.

-
- \ No newline at end of file + + + + + + + + + + + + + + + + TailBliss is Hugo Starter | TailBliss + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+
+
+

+ TailBliss

+

+ Super Fast, and Flexible +

+ + + What's new + + + Just shipped version 0.1.0 + + + + +

+ A Hugo theme built with love, using TailwindCSS 3, Apline.JS, and Hugo + Pipes. Images are optimized for use with Hugo Pipes for WebP format.

+
+
+ + + + + + TailBliss Hero +
+
+
+
+ + + + +
+
+
+ +
+ +
+ + + + TailBliss - Our Mission + > + +
+
+
+
+
+ Workcation +
+
+
+ +

Tincidunt integer commodo, cursus etiam + aliquam neque, et. Consectetur pretium in volutpat, diam. + Montes, magna cursus nulla feugiat dignissim id lobortis + amet. +

+
+ +
+

+ John Doe, CEO at TailBliss +

+
+
+
+
+
+
+ +
+ +
+

+ Our mission

+
+

Sagittis scelerisque nulla cursus in enim consectetur + quam. Dictum urna sed consectetur neque tristique pellentesque. Blandit + amet, sed aenean erat arcu morbi. Cursus faucibus nunc nisl netus morbi + vel porttitor vitae ut. Amet vitae fames senectus vitae. +

+

Sollicitudin tristique eros erat odio sed + vitae, consequat turpis elementum. Lorem nibh vel, eget pretium arcu + vitae. Eros eu viverra donec ut volutpat donec laoreet quam urna. + Sollicitudin tristique eroserat odio sed vitae, consequat turpis elementum. Lorem nibh vel, + eget pretium arcu vitae. Eros eu viverra donec ut volutpat donec laoreet quam urna. +

+

Rhoncus nisl, libero egestas diam fermentum + dui. At quis tincidunt vel ultricies. Vulputate aliquet velit faucibus semper. + Pellentesque in venenatis vestibulum consectetur nibh id. In id ut tempus egestas. Enim sit + aliquam nec, a. Morbi enim fermentum lacus in. Viverra. +

+
+
+
+
+
+ + +
+
+
+
+
+

+ Just in time for Hacktoberfest with JIT Tailwind. +

+

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur at purus non enim commodo + tincidunt vel in nulla. Aenean pretium dolor non ultricies bibendum. Etiam quis blandit + enim. Nunc condimentum ut lorem in faucibus. Phasellus varius ligula et commodo tristique. + Nunc sodales nisl nec + laoreet vehicula. Donec velit nibh, sollicitudin at nulla a, egestas dignissim eros. Sed + lacinia hendrerit interdum. + Vestibulum pellentesque sem venenatis nisl tempor accumsan sit amet tempus felis. Mauris leo + diam, porttitor nec + bibendum id, tempus ac nulla. Etiam congue ornare erat at convallis. Donec in nisi dapibus, + mattis risus vel, imperdiet enim. Donec + fermentum sit amet tortor nec tincidunt. Nam nec lectus tortor. Nunc sit amet laoreet orci, + porta ornare massa. Phasellus + eget lorem mi. Nam eleifend ultricies sapien, quis mollis leo bibendum at. Quisque viverra + lorem sit amet magna aliquet, et dignissim arcu eleifend. +

+
+
+
+
+ +
+
+ +
+ + + + + + + + TailBliss Hacktoberfest Image +
+
+
+
+ + +
+
+
+
+ Transistor +
+ +
+ Mirage +
+ +
+ Tuple +
+ +
+ Laravel +
+ +
+ StaticKit +
+ +
+ Workcation +
+
+
+

+ Backed by world-renowned investors +

+

Sagittis scelerisque nulla cursus in enim + consectetur quam. Dictum urna sed consectetur neque tristique pellentesque. Blandit amet, sed + aenean erat arcu morbi. Cursus faucibus nunc nisl netus morbi vel porttitor vitae ut. Amet vitae + fames senectus vitae. +

+ +
+
+
+ +
+
+
+
+
+
+

+ From the blog +

+

Lorem ipsum dolor + sit amet consectetur, + adipisicing elit. Ipsa libero labore natus atque, ducimus sed.

+
+ +
+
+
+ +
+ + + + + + +
+
+ + About + +

+ +

+
+
+ Tags: +
+
+
+ + +
+
+

+ +

+
+ + + 2 + min read +
+
+
+
+
+ +
+ + + + + + +
+
+ + Blog Post 2 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + Blog
+
+
+ TailBliss + + + + + + +
+
+

+ TailBliss +

+
+ + + 2 + min read +
+
+
+
+
+ +
+ + + + + + +
+
+ + Blog Post 3 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + Blog
+
+
+ TailBliss + + + + + + +
+
+

+ TailBliss +

+
+ + + 2 + min read +
+
+
+
+
+ +
+
+
+
+
+ + +
+ +
+
+ +
+
+

+ Stay Up to Date +

+

Sagittis + scelerisque nulla cursus in enim consectetur quam. Dictum urna sed + consectetur neque tristique pellentesque.

+
+
+
+ + +
+
+ +
+
+
+
+
+
+ +
+ + + + + + + + + + \ No newline at end of file diff --git a/public/page/4/index.html b/public/page/4/index.html index 9994608..4fd7848 100644 --- a/public/page/4/index.html +++ b/public/page/4/index.html @@ -1,67 +1,764 @@ -TailBliss is Hugo Starter | TailBliss

TailBliss

Super Fast, and Flexible

What's new -Just shipped version 0.1.0

A Hugo theme built with love, using TailwindCSS 3, Apline.JS, and Hugo -Pipes. Images are optimized for use with Hugo Pipes for WebP format.

TailBliss Hero
TailBliss - Our Mission ->
Workcation

Tincidunt integer commodo, cursus etiam -aliquam neque, et. Consectetur pretium in volutpat, diam. -Montes, magna cursus nulla feugiat dignissim id lobortis -amet.

John Doe, CEO at TailBliss

Our mission

Sagittis scelerisque nulla cursus in enim consectetur -quam. Dictum urna sed consectetur neque tristique pellentesque. Blandit -amet, sed aenean erat arcu morbi. Cursus faucibus nunc nisl netus morbi -vel porttitor vitae ut. Amet vitae fames senectus vitae.

Sollicitudin tristique eros erat odio sed -vitae, consequat turpis elementum. Lorem nibh vel, eget pretium arcu -vitae. Eros eu viverra donec ut volutpat donec laoreet quam urna. -Sollicitudin tristique eroserat odio sed vitae, consequat turpis elementum. Lorem nibh vel, -eget pretium arcu vitae. Eros eu viverra donec ut volutpat donec laoreet quam urna.

Rhoncus nisl, libero egestas diam fermentum -dui. At quis tincidunt vel ultricies. Vulputate aliquet velit faucibus semper. -Pellentesque in venenatis vestibulum consectetur nibh id. In id ut tempus egestas. Enim sit -aliquam nec, a. Morbi enim fermentum lacus in. Viverra.

Just in time for Hacktoberfest with JIT Tailwind.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur at purus non enim commodo -tincidunt vel in nulla. Aenean pretium dolor non ultricies bibendum. Etiam quis blandit -enim. Nunc condimentum ut lorem in faucibus. Phasellus varius ligula et commodo tristique. -Nunc sodales nisl nec -laoreet vehicula. Donec velit nibh, sollicitudin at nulla a, egestas dignissim eros. Sed -lacinia hendrerit interdum. -Vestibulum pellentesque sem venenatis nisl tempor accumsan sit amet tempus felis. Mauris leo -diam, porttitor nec -bibendum id, tempus ac nulla. Etiam congue ornare erat at convallis. Donec in nisi dapibus, -mattis risus vel, imperdiet enim. Donec -fermentum sit amet tortor nec tincidunt. Nam nec lectus tortor. Nunc sit amet laoreet orci, -porta ornare massa. Phasellus -eget lorem mi. Nam eleifend ultricies sapien, quis mollis leo bibendum at. Quisque viverra -lorem sit amet magna aliquet, et dignissim arcu eleifend.

TailBliss Hacktoberfest Image
Transistor
Mirage
Tuple
Laravel
StaticKit
Workcation

Backed by world-renowned investors

Sagittis scelerisque nulla cursus in enim -consectetur quam. Dictum urna sed consectetur neque tristique pellentesque. Blandit amet, sed -aenean erat arcu morbi. Cursus faucibus nunc nisl netus morbi vel porttitor vitae ut. Amet vitae -fames senectus vitae.

From the blog

Lorem ipsum dolor -sit amet consectetur, -adipisicing elit. Ipsa libero labore natus atque, ducimus sed.

Blog Post 4

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -Blog
TailBliss -

TailBliss

- -2 -min read
Blog Post 5

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -Blog
TailBliss -

TailBliss

- -2 -min read
Blog Post 6

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -Blog
TailBliss -

TailBliss

- -2 -min read

Stay Up to Date

Sagittis -scelerisque nulla cursus in enim consectetur quam. Dictum urna sed -consectetur neque tristique pellentesque.

-
- \ No newline at end of file + + + + + + + + + + + + + + + + TailBliss is Hugo Starter | TailBliss + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+
+
+

+ TailBliss

+

+ Super Fast, and Flexible +

+ + + What's new + + + Just shipped version 0.1.0 + + + + +

+ A Hugo theme built with love, using TailwindCSS 3, Apline.JS, and Hugo + Pipes. Images are optimized for use with Hugo Pipes for WebP format.

+
+
+ + + + + + TailBliss Hero +
+
+
+
+ + + + +
+
+
+ +
+ +
+ + + + TailBliss - Our Mission + > + +
+
+
+
+
+ Workcation +
+
+
+ +

Tincidunt integer commodo, cursus etiam + aliquam neque, et. Consectetur pretium in volutpat, diam. + Montes, magna cursus nulla feugiat dignissim id lobortis + amet. +

+
+ +
+

+ John Doe, CEO at TailBliss +

+
+
+
+
+
+
+ +
+ +
+

+ Our mission

+
+

Sagittis scelerisque nulla cursus in enim consectetur + quam. Dictum urna sed consectetur neque tristique pellentesque. Blandit + amet, sed aenean erat arcu morbi. Cursus faucibus nunc nisl netus morbi + vel porttitor vitae ut. Amet vitae fames senectus vitae. +

+

Sollicitudin tristique eros erat odio sed + vitae, consequat turpis elementum. Lorem nibh vel, eget pretium arcu + vitae. Eros eu viverra donec ut volutpat donec laoreet quam urna. + Sollicitudin tristique eroserat odio sed vitae, consequat turpis elementum. Lorem nibh vel, + eget pretium arcu vitae. Eros eu viverra donec ut volutpat donec laoreet quam urna. +

+

Rhoncus nisl, libero egestas diam fermentum + dui. At quis tincidunt vel ultricies. Vulputate aliquet velit faucibus semper. + Pellentesque in venenatis vestibulum consectetur nibh id. In id ut tempus egestas. Enim sit + aliquam nec, a. Morbi enim fermentum lacus in. Viverra. +

+
+
+
+
+
+ + +
+
+
+
+
+

+ Just in time for Hacktoberfest with JIT Tailwind. +

+

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur at purus non enim commodo + tincidunt vel in nulla. Aenean pretium dolor non ultricies bibendum. Etiam quis blandit + enim. Nunc condimentum ut lorem in faucibus. Phasellus varius ligula et commodo tristique. + Nunc sodales nisl nec + laoreet vehicula. Donec velit nibh, sollicitudin at nulla a, egestas dignissim eros. Sed + lacinia hendrerit interdum. + Vestibulum pellentesque sem venenatis nisl tempor accumsan sit amet tempus felis. Mauris leo + diam, porttitor nec + bibendum id, tempus ac nulla. Etiam congue ornare erat at convallis. Donec in nisi dapibus, + mattis risus vel, imperdiet enim. Donec + fermentum sit amet tortor nec tincidunt. Nam nec lectus tortor. Nunc sit amet laoreet orci, + porta ornare massa. Phasellus + eget lorem mi. Nam eleifend ultricies sapien, quis mollis leo bibendum at. Quisque viverra + lorem sit amet magna aliquet, et dignissim arcu eleifend. +

+
+
+
+
+ +
+
+ +
+ + + + + + + + TailBliss Hacktoberfest Image +
+
+
+
+ + +
+
+
+
+ Transistor +
+ +
+ Mirage +
+ +
+ Tuple +
+ +
+ Laravel +
+ +
+ StaticKit +
+ +
+ Workcation +
+
+
+

+ Backed by world-renowned investors +

+

Sagittis scelerisque nulla cursus in enim + consectetur quam. Dictum urna sed consectetur neque tristique pellentesque. Blandit amet, sed + aenean erat arcu morbi. Cursus faucibus nunc nisl netus morbi vel porttitor vitae ut. Amet vitae + fames senectus vitae. +

+ +
+
+
+ +
+
+
+
+
+
+

+ From the blog +

+

Lorem ipsum dolor + sit amet consectetur, + adipisicing elit. Ipsa libero labore natus atque, ducimus sed.

+
+ +
+
+
+ +
+ + + + + + +
+
+ + Blog Post 4 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + Blog
+
+
+ TailBliss + + + + + + +
+
+

+ TailBliss +

+
+ + + 2 + min read +
+
+
+
+
+ +
+ + + + + + +
+
+ + Blog Post 5 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + Blog
+
+
+ TailBliss + + + + + + +
+
+

+ TailBliss +

+
+ + + 2 + min read +
+
+
+
+
+ +
+ + + + + + +
+
+ + Blog Post 6 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + Blog
+
+
+ TailBliss + + + + + + +
+
+

+ TailBliss +

+
+ + + 2 + min read +
+
+
+
+
+ +
+
+
+
+
+ + +
+ +
+
+ +
+
+

+ Stay Up to Date +

+

Sagittis + scelerisque nulla cursus in enim consectetur quam. Dictum urna sed + consectetur neque tristique pellentesque.

+
+
+
+ + +
+
+ +
+
+
+
+
+
+ +
+ + + + + + + + + + \ No newline at end of file diff --git a/public/page/5/index.html b/public/page/5/index.html index 385909a..ae374f3 100644 --- a/public/page/5/index.html +++ b/public/page/5/index.html @@ -1,63 +1,746 @@ -TailBliss is Hugo Starter | TailBliss

TailBliss

Super Fast, and Flexible

What's new -Just shipped version 0.1.0

A Hugo theme built with love, using TailwindCSS 3, Apline.JS, and Hugo -Pipes. Images are optimized for use with Hugo Pipes for WebP format.

TailBliss Hero
TailBliss - Our Mission ->
Workcation

Tincidunt integer commodo, cursus etiam -aliquam neque, et. Consectetur pretium in volutpat, diam. -Montes, magna cursus nulla feugiat dignissim id lobortis -amet.

John Doe, CEO at TailBliss

Our mission

Sagittis scelerisque nulla cursus in enim consectetur -quam. Dictum urna sed consectetur neque tristique pellentesque. Blandit -amet, sed aenean erat arcu morbi. Cursus faucibus nunc nisl netus morbi -vel porttitor vitae ut. Amet vitae fames senectus vitae.

Sollicitudin tristique eros erat odio sed -vitae, consequat turpis elementum. Lorem nibh vel, eget pretium arcu -vitae. Eros eu viverra donec ut volutpat donec laoreet quam urna. -Sollicitudin tristique eroserat odio sed vitae, consequat turpis elementum. Lorem nibh vel, -eget pretium arcu vitae. Eros eu viverra donec ut volutpat donec laoreet quam urna.

Rhoncus nisl, libero egestas diam fermentum -dui. At quis tincidunt vel ultricies. Vulputate aliquet velit faucibus semper. -Pellentesque in venenatis vestibulum consectetur nibh id. In id ut tempus egestas. Enim sit -aliquam nec, a. Morbi enim fermentum lacus in. Viverra.

Just in time for Hacktoberfest with JIT Tailwind.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur at purus non enim commodo -tincidunt vel in nulla. Aenean pretium dolor non ultricies bibendum. Etiam quis blandit -enim. Nunc condimentum ut lorem in faucibus. Phasellus varius ligula et commodo tristique. -Nunc sodales nisl nec -laoreet vehicula. Donec velit nibh, sollicitudin at nulla a, egestas dignissim eros. Sed -lacinia hendrerit interdum. -Vestibulum pellentesque sem venenatis nisl tempor accumsan sit amet tempus felis. Mauris leo -diam, porttitor nec -bibendum id, tempus ac nulla. Etiam congue ornare erat at convallis. Donec in nisi dapibus, -mattis risus vel, imperdiet enim. Donec -fermentum sit amet tortor nec tincidunt. Nam nec lectus tortor. Nunc sit amet laoreet orci, -porta ornare massa. Phasellus -eget lorem mi. Nam eleifend ultricies sapien, quis mollis leo bibendum at. Quisque viverra -lorem sit amet magna aliquet, et dignissim arcu eleifend.

TailBliss Hacktoberfest Image
Transistor
Mirage
Tuple
Laravel
StaticKit
Workcation

Backed by world-renowned investors

Sagittis scelerisque nulla cursus in enim -consectetur quam. Dictum urna sed consectetur neque tristique pellentesque. Blandit amet, sed -aenean erat arcu morbi. Cursus faucibus nunc nisl netus morbi vel porttitor vitae ut. Amet vitae -fames senectus vitae.

From the blog

Lorem ipsum dolor -sit amet consectetur, -adipisicing elit. Ipsa libero labore natus atque, ducimus sed.

Tags:

- -0 -min read
News Post 3

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -News
TailBliss -

TailBliss

- -2 -min read
Tags:

- -6 -min read

Stay Up to Date

Sagittis -scelerisque nulla cursus in enim consectetur quam. Dictum urna sed -consectetur neque tristique pellentesque.

-
- \ No newline at end of file + + + + + + + + + + + + + + + + TailBliss is Hugo Starter | TailBliss + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+
+
+

+ TailBliss

+

+ Super Fast, and Flexible +

+ + + What's new + + + Just shipped version 0.1.0 + + + + +

+ A Hugo theme built with love, using TailwindCSS 3, Apline.JS, and Hugo + Pipes. Images are optimized for use with Hugo Pipes for WebP format.

+
+
+ + + + + + TailBliss Hero +
+
+
+
+ + + + +
+
+
+ +
+ +
+ + + + TailBliss - Our Mission + > + +
+
+
+
+
+ Workcation +
+
+
+ +

Tincidunt integer commodo, cursus etiam + aliquam neque, et. Consectetur pretium in volutpat, diam. + Montes, magna cursus nulla feugiat dignissim id lobortis + amet. +

+
+ +
+

+ John Doe, CEO at TailBliss +

+
+
+
+
+
+
+ +
+ +
+

+ Our mission

+
+

Sagittis scelerisque nulla cursus in enim consectetur + quam. Dictum urna sed consectetur neque tristique pellentesque. Blandit + amet, sed aenean erat arcu morbi. Cursus faucibus nunc nisl netus morbi + vel porttitor vitae ut. Amet vitae fames senectus vitae. +

+

Sollicitudin tristique eros erat odio sed + vitae, consequat turpis elementum. Lorem nibh vel, eget pretium arcu + vitae. Eros eu viverra donec ut volutpat donec laoreet quam urna. + Sollicitudin tristique eroserat odio sed vitae, consequat turpis elementum. Lorem nibh vel, + eget pretium arcu vitae. Eros eu viverra donec ut volutpat donec laoreet quam urna. +

+

Rhoncus nisl, libero egestas diam fermentum + dui. At quis tincidunt vel ultricies. Vulputate aliquet velit faucibus semper. + Pellentesque in venenatis vestibulum consectetur nibh id. In id ut tempus egestas. Enim sit + aliquam nec, a. Morbi enim fermentum lacus in. Viverra. +

+
+
+
+
+
+ + +
+
+
+
+
+

+ Just in time for Hacktoberfest with JIT Tailwind. +

+

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur at purus non enim commodo + tincidunt vel in nulla. Aenean pretium dolor non ultricies bibendum. Etiam quis blandit + enim. Nunc condimentum ut lorem in faucibus. Phasellus varius ligula et commodo tristique. + Nunc sodales nisl nec + laoreet vehicula. Donec velit nibh, sollicitudin at nulla a, egestas dignissim eros. Sed + lacinia hendrerit interdum. + Vestibulum pellentesque sem venenatis nisl tempor accumsan sit amet tempus felis. Mauris leo + diam, porttitor nec + bibendum id, tempus ac nulla. Etiam congue ornare erat at convallis. Donec in nisi dapibus, + mattis risus vel, imperdiet enim. Donec + fermentum sit amet tortor nec tincidunt. Nam nec lectus tortor. Nunc sit amet laoreet orci, + porta ornare massa. Phasellus + eget lorem mi. Nam eleifend ultricies sapien, quis mollis leo bibendum at. Quisque viverra + lorem sit amet magna aliquet, et dignissim arcu eleifend. +

+
+
+
+
+ +
+
+ +
+ + + + + + + + TailBliss Hacktoberfest Image +
+
+
+
+ + +
+
+
+
+ Transistor +
+ +
+ Mirage +
+ +
+ Tuple +
+ +
+ Laravel +
+ +
+ StaticKit +
+ +
+ Workcation +
+
+
+

+ Backed by world-renowned investors +

+

Sagittis scelerisque nulla cursus in enim + consectetur quam. Dictum urna sed consectetur neque tristique pellentesque. Blandit amet, sed + aenean erat arcu morbi. Cursus faucibus nunc nisl netus morbi vel porttitor vitae ut. Amet vitae + fames senectus vitae. +

+ +
+
+
+ +
+
+
+
+
+
+

+ From the blog +

+

Lorem ipsum dolor + sit amet consectetur, + adipisicing elit. Ipsa libero labore natus atque, ducimus sed.

+
+ +
+
+
+ +
+ +
+
+ + Contact + +

+ +

+
+
+ Tags: +
+
+
+ + +
+
+

+ +

+
+ + + 0 + min read +
+
+
+
+
+ +
+ + + + + + +
+
+ + News Post 3 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + News
+
+
+ TailBliss + + + + + + +
+
+

+ TailBliss +

+
+ + + 2 + min read +
+
+
+
+
+ +
+ + + + + + +
+
+ + Prose + +

+ +

+
+
+ Tags: +
+
+
+ + +
+
+

+ +

+
+ + + 6 + min read +
+
+
+
+
+ +
+
+
+
+
+ + +
+ +
+
+ +
+
+

+ Stay Up to Date +

+

Sagittis + scelerisque nulla cursus in enim consectetur quam. Dictum urna sed + consectetur neque tristique pellentesque.

+
+
+
+ + +
+
+ +
+
+
+
+
+
+ +
+ + + + + + + + + + \ No newline at end of file diff --git a/public/posts/blog-post-1/index.html b/public/posts/blog-post-1/index.html index eac6ba4..efceaa6 100644 --- a/public/posts/blog-post-1/index.html +++ b/public/posts/blog-post-1/index.html @@ -1,35 +1,538 @@ -Blog Post 1 | TailBliss

Blog Post 1

Advertisement 😄

  • pica - high quality and fast image -resize in browser.
  • babelfish - developer friendly -i18n with plurals support and easy syntax.

You will like those projects!


h1 Heading 😊

h2 Heading

h3 Heading

h4 Heading

h5 Heading
h6 Heading

Horizontal Rules




Typographic replacements

Enable typographer option to see result.

(c) (C) (r) (R) (tm) (TM) (p) (P) +-

test.. test… test….. test?….. test!….

!!!!!! ???? ,, – —

“Smartypants, double quotes” and ‘single quotes’

Emphasis

This is bold text

This is bold text

This is italic text

This is italic text

Strikethrough

Blockquotes

Blockquotes can also be nested…

…by using additional greater-than signs right next to each other…

…or with spaces between arrows.

Lists

Unordered

  • Create a list by starting a line with +, -, or *
  • Sub-lists are made by indenting 2 spaces:
    • Marker character change forces new list start:
      • Ac tristique libero volutpat at
      • Facilisis in pretium nisl aliquet
      • Nulla volutpat aliquam velit
  • Very easy!

Ordered

  1. Lorem ipsum dolor sit amet

  2. Consectetur adipiscing elit

  3. Integer molestie lorem at massa

  4. You can use sequential numbers…

  5. …or keep all the numbers as 1.

Start numbering with offset:

  1. foo
  2. bar

Code

Inline code

Indented code

// Some comments
+
+
+
+
+    
+
+
+
+
+
+
+
+
+
+ Blog Post 1 | TailBliss 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+    
+    
+
+
+ +

+ Blog Post 1 +

+
+
+
+
+ + + + + + + + + +
+
+ +
+

Advertisement 😄

+
    +
  • pica - high quality and fast image +resize in browser.
  • +
  • babelfish - developer friendly +i18n with plurals support and easy syntax.
  • +
+

You will like those projects!

+
+

h1 Heading 😊

+

h2 Heading

+

h3 Heading

+

h4 Heading

+
h5 Heading
+
h6 Heading
+

Horizontal Rules

+
+
+
+

Typographic replacements

+

Enable typographer option to see result.

+

(c) (C) (r) (R) (tm) (TM) (p) (P) +-

+

test.. test… test….. test?….. test!….

+

!!!!!! ???? ,, – —

+

“Smartypants, double quotes” and ‘single quotes’

+

Emphasis

+

This is bold text

+

This is bold text

+

This is italic text

+

This is italic text

+

Strikethrough

+

Blockquotes

+
+

Blockquotes can also be nested…

+
+

…by using additional greater-than signs right next to each other…

+
+

…or with spaces between arrows.

+
+
+
+

Lists

+

Unordered

+
    +
  • Create a list by starting a line with +, -, or *
  • +
  • Sub-lists are made by indenting 2 spaces: +
      +
    • Marker character change forces new list start: +
        +
      • Ac tristique libero volutpat at
      • +
      +
        +
      • Facilisis in pretium nisl aliquet
      • +
      +
        +
      • Nulla volutpat aliquam velit
      • +
      +
    • +
    +
  • +
  • Very easy!
  • +
+

Ordered

+
    +
  1. +

    Lorem ipsum dolor sit amet

    +
  2. +
  3. +

    Consectetur adipiscing elit

    +
  4. +
  5. +

    Integer molestie lorem at massa

    +
  6. +
  7. +

    You can use sequential numbers…

    +
  8. +
  9. +

    …or keep all the numbers as 1.

    +
  10. +
+

Start numbering with offset:

+
    +
  1. foo
  2. +
  3. bar
  4. +
+

Code

+

Inline code

+

Indented code

+
// Some comments
 line 1 of code
 line 2 of code
 line 3 of code
-

Block code “fences”

Sample text here...
-

Syntax highlighting

var foo = function (bar) {
-  return bar++;
-};
-
-console.log(foo(5));
-

Tables

OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.

Right aligned columns

OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.

link text

link with title

Autoconverted link https://github.com/nodeca/pica (enable linkify to see)

Images

Minion -Stormtroopocat

Like links, Images also have a footnote style syntax

Alt text

With a reference later in the document defining the URL location:

Plugins

The killer feature of markdown-it is very effective support of -syntax plugins.

Emojies

Classic markup: 😉 :crush: 😢 :tear: 😆 😋

Shortcuts (emoticons): :-) :-( 8-) ;)

see how to change output with twemoji.

Subscript / Superscript

  • 19^th^
  • H~2~O

<ins>

++Inserted text++

<mark>

==Marked text==

Footnotes

Footnote 1 link1.

Footnote 2 link2.

Inline footnote^[Text of inline footnote] definition.

Duplicated footnote reference2.

Definition lists

Term 1

Definition 1 -with lazy continuation.

Term 2 with inline markup

Definition 2

{ some code, part of Definition 2 }
-

Third paragraph of definition 2.

Compact style:

Term 1 -~ Definition 1

Term 2 +

+

Block code “fences”

+
Sample text here...
+

Syntax highlighting

+
var foo = function (bar) {
+  return bar++;
+};
+
+console.log(foo(5));
+

Tables

+ + + + + + + + + + + + + + + + + + + + + +
OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.
+

Right aligned columns

+ + + + + + + + + + + + + + + + + + + + + +
OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.
+ +

link text

+

link with title

+

Autoconverted link https://github.com/nodeca/pica (enable linkify to see)

+

Images

+

Minion +Stormtroopocat

+

Like links, Images also have a footnote style syntax

+

Alt text

+

With a reference later in the document defining the URL location:

+

Plugins

+

The killer feature of markdown-it is very effective support of +syntax plugins.

+

Emojies

+
+

Classic markup: 😉 :crush: 😢 :tear: 😆 😋

+

Shortcuts (emoticons): :-) :-( 8-) ;)

+
+

see how to change output with twemoji.

+

Subscript / Superscript

+
    +
  • 19^th^
  • +
  • H~2~O
  • +
+

<ins>

+

++Inserted text++

+

<mark>

+

==Marked text==

+

Footnotes

+

Footnote 1 link1.

+

Footnote 2 link2.

+

Inline footnote^[Text of inline footnote] definition.

+

Duplicated footnote reference2.

+

Definition lists

+
+
Term 1
+
+

Definition 1 +with lazy continuation.

+
+
Term 2 with inline markup
+
+

Definition 2

+
{ some code, part of Definition 2 }
+
+

Third paragraph of definition 2.

+
+
+

Compact style:

+

Term 1 +~ Definition 1

+

Term 2 ~ Definition 2a -~ Definition 2b

Abbreviations

This is HTML abbreviation example.

It converts “HTML”, but keep intact partial entries like “xxxHTMLyyy” and so on.

*[HTML]: Hyper Text Markup Language

Custom containers

::: warning +~ Definition 2b

+

Abbreviations

+

This is HTML abbreviation example.

+

It converts “HTML”, but keep intact partial entries like “xxxHTMLyyy” and so on.

+

*[HTML]: Hyper Text Markup Language

+

Custom containers

+

::: warning here be dragons -:::


  1. Footnote can have markup

    and multiple paragraphs. ↩︎

  2. Footnote text. ↩︎ ↩︎

- \ No newline at end of file +:::

+
+
+
    +
  1. +

    Footnote can have markup

    +

    and multiple paragraphs. ↩︎

    +
  2. +
  3. +

    Footnote text. ↩︎ ↩︎

    +
  4. +
+
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/public/posts/blog-post-2/index.html b/public/posts/blog-post-2/index.html index 077548c..8500601 100644 --- a/public/posts/blog-post-2/index.html +++ b/public/posts/blog-post-2/index.html @@ -1,35 +1,538 @@ -Blog Post 2 | TailBliss

Blog Post 2

Advertisement 😄

  • pica - high quality and fast image -resize in browser.
  • babelfish - developer friendly -i18n with plurals support and easy syntax.

You will like those projects!


h1 Heading 😊

h2 Heading

h3 Heading

h4 Heading

h5 Heading
h6 Heading

Horizontal Rules




Typographic replacements

Enable typographer option to see result.

(c) (C) (r) (R) (tm) (TM) (p) (P) +-

test.. test… test….. test?….. test!….

!!!!!! ???? ,, – —

“Smartypants, double quotes” and ‘single quotes’

Emphasis

This is bold text

This is bold text

This is italic text

This is italic text

Strikethrough

Blockquotes

Blockquotes can also be nested…

…by using additional greater-than signs right next to each other…

…or with spaces between arrows.

Lists

Unordered

  • Create a list by starting a line with +, -, or *
  • Sub-lists are made by indenting 2 spaces:
    • Marker character change forces new list start:
      • Ac tristique libero volutpat at
      • Facilisis in pretium nisl aliquet
      • Nulla volutpat aliquam velit
  • Very easy!

Ordered

  1. Lorem ipsum dolor sit amet

  2. Consectetur adipiscing elit

  3. Integer molestie lorem at massa

  4. You can use sequential numbers…

  5. …or keep all the numbers as 1.

Start numbering with offset:

  1. foo
  2. bar

Code

Inline code

Indented code

// Some comments
+
+
+
+
+    
+
+
+
+
+
+
+
+
+
+ Blog Post 2 | TailBliss 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+    
+    
+
+
+ +

+ Blog Post 2 +

+
+
+
+
+ + + + + + + + + +
+
+ +
+

Advertisement 😄

+
    +
  • pica - high quality and fast image +resize in browser.
  • +
  • babelfish - developer friendly +i18n with plurals support and easy syntax.
  • +
+

You will like those projects!

+
+

h1 Heading 😊

+

h2 Heading

+

h3 Heading

+

h4 Heading

+
h5 Heading
+
h6 Heading
+

Horizontal Rules

+
+
+
+

Typographic replacements

+

Enable typographer option to see result.

+

(c) (C) (r) (R) (tm) (TM) (p) (P) +-

+

test.. test… test….. test?….. test!….

+

!!!!!! ???? ,, – —

+

“Smartypants, double quotes” and ‘single quotes’

+

Emphasis

+

This is bold text

+

This is bold text

+

This is italic text

+

This is italic text

+

Strikethrough

+

Blockquotes

+
+

Blockquotes can also be nested…

+
+

…by using additional greater-than signs right next to each other…

+
+

…or with spaces between arrows.

+
+
+
+

Lists

+

Unordered

+
    +
  • Create a list by starting a line with +, -, or *
  • +
  • Sub-lists are made by indenting 2 spaces: +
      +
    • Marker character change forces new list start: +
        +
      • Ac tristique libero volutpat at
      • +
      +
        +
      • Facilisis in pretium nisl aliquet
      • +
      +
        +
      • Nulla volutpat aliquam velit
      • +
      +
    • +
    +
  • +
  • Very easy!
  • +
+

Ordered

+
    +
  1. +

    Lorem ipsum dolor sit amet

    +
  2. +
  3. +

    Consectetur adipiscing elit

    +
  4. +
  5. +

    Integer molestie lorem at massa

    +
  6. +
  7. +

    You can use sequential numbers…

    +
  8. +
  9. +

    …or keep all the numbers as 1.

    +
  10. +
+

Start numbering with offset:

+
    +
  1. foo
  2. +
  3. bar
  4. +
+

Code

+

Inline code

+

Indented code

+
// Some comments
 line 1 of code
 line 2 of code
 line 3 of code
-

Block code “fences”

Sample text here...
-

Syntax highlighting

var foo = function (bar) {
-  return bar++;
-};
-
-console.log(foo(5));
-

Tables

OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.

Right aligned columns

OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.

link text

link with title

Autoconverted link https://github.com/nodeca/pica (enable linkify to see)

Images

Minion -Stormtroopocat

Like links, Images also have a footnote style syntax

Alt text

With a reference later in the document defining the URL location:

Plugins

The killer feature of markdown-it is very effective support of -syntax plugins.

Emojies

Classic markup: 😉 :crush: 😢 :tear: 😆 😋

Shortcuts (emoticons): :-) :-( 8-) ;)

see how to change output with twemoji.

Subscript / Superscript

  • 19^th^
  • H~2~O

<ins>

++Inserted text++

<mark>

==Marked text==

Footnotes

Footnote 1 link1.

Footnote 2 link2.

Inline footnote^[Text of inline footnote] definition.

Duplicated footnote reference2.

Definition lists

Term 1

Definition 1 -with lazy continuation.

Term 2 with inline markup

Definition 2

{ some code, part of Definition 2 }
-

Third paragraph of definition 2.

Compact style:

Term 1 -~ Definition 1

Term 2 +

+

Block code “fences”

+
Sample text here...
+

Syntax highlighting

+
var foo = function (bar) {
+  return bar++;
+};
+
+console.log(foo(5));
+

Tables

+ + + + + + + + + + + + + + + + + + + + + +
OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.
+

Right aligned columns

+ + + + + + + + + + + + + + + + + + + + + +
OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.
+ +

link text

+

link with title

+

Autoconverted link https://github.com/nodeca/pica (enable linkify to see)

+

Images

+

Minion +Stormtroopocat

+

Like links, Images also have a footnote style syntax

+

Alt text

+

With a reference later in the document defining the URL location:

+

Plugins

+

The killer feature of markdown-it is very effective support of +syntax plugins.

+

Emojies

+
+

Classic markup: 😉 :crush: 😢 :tear: 😆 😋

+

Shortcuts (emoticons): :-) :-( 8-) ;)

+
+

see how to change output with twemoji.

+

Subscript / Superscript

+
    +
  • 19^th^
  • +
  • H~2~O
  • +
+

<ins>

+

++Inserted text++

+

<mark>

+

==Marked text==

+

Footnotes

+

Footnote 1 link1.

+

Footnote 2 link2.

+

Inline footnote^[Text of inline footnote] definition.

+

Duplicated footnote reference2.

+

Definition lists

+
+
Term 1
+
+

Definition 1 +with lazy continuation.

+
+
Term 2 with inline markup
+
+

Definition 2

+
{ some code, part of Definition 2 }
+
+

Third paragraph of definition 2.

+
+
+

Compact style:

+

Term 1 +~ Definition 1

+

Term 2 ~ Definition 2a -~ Definition 2b

Abbreviations

This is HTML abbreviation example.

It converts “HTML”, but keep intact partial entries like “xxxHTMLyyy” and so on.

*[HTML]: Hyper Text Markup Language

Custom containers

::: warning +~ Definition 2b

+

Abbreviations

+

This is HTML abbreviation example.

+

It converts “HTML”, but keep intact partial entries like “xxxHTMLyyy” and so on.

+

*[HTML]: Hyper Text Markup Language

+

Custom containers

+

::: warning here be dragons -:::


  1. Footnote can have markup

    and multiple paragraphs. ↩︎

  2. Footnote text. ↩︎ ↩︎

- \ No newline at end of file +:::

+
+
+
    +
  1. +

    Footnote can have markup

    +

    and multiple paragraphs. ↩︎

    +
  2. +
  3. +

    Footnote text. ↩︎ ↩︎

    +
  4. +
+
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/public/posts/blog-post-3/index.html b/public/posts/blog-post-3/index.html index c18cb85..075decc 100644 --- a/public/posts/blog-post-3/index.html +++ b/public/posts/blog-post-3/index.html @@ -1,35 +1,538 @@ -Blog Post 3 | TailBliss

Blog Post 3

Advertisement 😄

  • pica - high quality and fast image -resize in browser.
  • babelfish - developer friendly -i18n with plurals support and easy syntax.

You will like those projects!


h1 Heading 😊

h2 Heading

h3 Heading

h4 Heading

h5 Heading
h6 Heading

Horizontal Rules




Typographic replacements

Enable typographer option to see result.

(c) (C) (r) (R) (tm) (TM) (p) (P) +-

test.. test… test….. test?….. test!….

!!!!!! ???? ,, – —

“Smartypants, double quotes” and ‘single quotes’

Emphasis

This is bold text

This is bold text

This is italic text

This is italic text

Strikethrough

Blockquotes

Blockquotes can also be nested…

…by using additional greater-than signs right next to each other…

…or with spaces between arrows.

Lists

Unordered

  • Create a list by starting a line with +, -, or *
  • Sub-lists are made by indenting 2 spaces:
    • Marker character change forces new list start:
      • Ac tristique libero volutpat at
      • Facilisis in pretium nisl aliquet
      • Nulla volutpat aliquam velit
  • Very easy!

Ordered

  1. Lorem ipsum dolor sit amet

  2. Consectetur adipiscing elit

  3. Integer molestie lorem at massa

  4. You can use sequential numbers…

  5. …or keep all the numbers as 1.

Start numbering with offset:

  1. foo
  2. bar

Code

Inline code

Indented code

// Some comments
+
+
+
+
+    
+
+
+
+
+
+
+
+
+
+ Blog Post 3 | TailBliss 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+    
+    
+
+
+ +

+ Blog Post 3 +

+
+
+
+
+ + + + + + + + + +
+
+ +
+

Advertisement 😄

+
    +
  • pica - high quality and fast image +resize in browser.
  • +
  • babelfish - developer friendly +i18n with plurals support and easy syntax.
  • +
+

You will like those projects!

+
+

h1 Heading 😊

+

h2 Heading

+

h3 Heading

+

h4 Heading

+
h5 Heading
+
h6 Heading
+

Horizontal Rules

+
+
+
+

Typographic replacements

+

Enable typographer option to see result.

+

(c) (C) (r) (R) (tm) (TM) (p) (P) +-

+

test.. test… test….. test?….. test!….

+

!!!!!! ???? ,, – —

+

“Smartypants, double quotes” and ‘single quotes’

+

Emphasis

+

This is bold text

+

This is bold text

+

This is italic text

+

This is italic text

+

Strikethrough

+

Blockquotes

+
+

Blockquotes can also be nested…

+
+

…by using additional greater-than signs right next to each other…

+
+

…or with spaces between arrows.

+
+
+
+

Lists

+

Unordered

+
    +
  • Create a list by starting a line with +, -, or *
  • +
  • Sub-lists are made by indenting 2 spaces: +
      +
    • Marker character change forces new list start: +
        +
      • Ac tristique libero volutpat at
      • +
      +
        +
      • Facilisis in pretium nisl aliquet
      • +
      +
        +
      • Nulla volutpat aliquam velit
      • +
      +
    • +
    +
  • +
  • Very easy!
  • +
+

Ordered

+
    +
  1. +

    Lorem ipsum dolor sit amet

    +
  2. +
  3. +

    Consectetur adipiscing elit

    +
  4. +
  5. +

    Integer molestie lorem at massa

    +
  6. +
  7. +

    You can use sequential numbers…

    +
  8. +
  9. +

    …or keep all the numbers as 1.

    +
  10. +
+

Start numbering with offset:

+
    +
  1. foo
  2. +
  3. bar
  4. +
+

Code

+

Inline code

+

Indented code

+
// Some comments
 line 1 of code
 line 2 of code
 line 3 of code
-

Block code “fences”

Sample text here...
-

Syntax highlighting

var foo = function (bar) {
-  return bar++;
-};
-
-console.log(foo(5));
-

Tables

OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.

Right aligned columns

OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.

link text

link with title

Autoconverted link https://github.com/nodeca/pica (enable linkify to see)

Images

Minion -Stormtroopocat

Like links, Images also have a footnote style syntax

Alt text

With a reference later in the document defining the URL location:

Plugins

The killer feature of markdown-it is very effective support of -syntax plugins.

Emojies

Classic markup: 😉 :crush: 😢 :tear: 😆 😋

Shortcuts (emoticons): :-) :-( 8-) ;)

see how to change output with twemoji.

Subscript / Superscript

  • 19^th^
  • H~2~O

<ins>

++Inserted text++

<mark>

==Marked text==

Footnotes

Footnote 1 link1.

Footnote 2 link2.

Inline footnote^[Text of inline footnote] definition.

Duplicated footnote reference2.

Definition lists

Term 1

Definition 1 -with lazy continuation.

Term 2 with inline markup

Definition 2

{ some code, part of Definition 2 }
-

Third paragraph of definition 2.

Compact style:

Term 1 -~ Definition 1

Term 2 +

+

Block code “fences”

+
Sample text here...
+

Syntax highlighting

+
var foo = function (bar) {
+  return bar++;
+};
+
+console.log(foo(5));
+

Tables

+ + + + + + + + + + + + + + + + + + + + + +
OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.
+

Right aligned columns

+ + + + + + + + + + + + + + + + + + + + + +
OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.
+ +

link text

+

link with title

+

Autoconverted link https://github.com/nodeca/pica (enable linkify to see)

+

Images

+

Minion +Stormtroopocat

+

Like links, Images also have a footnote style syntax

+

Alt text

+

With a reference later in the document defining the URL location:

+

Plugins

+

The killer feature of markdown-it is very effective support of +syntax plugins.

+

Emojies

+
+

Classic markup: 😉 :crush: 😢 :tear: 😆 😋

+

Shortcuts (emoticons): :-) :-( 8-) ;)

+
+

see how to change output with twemoji.

+

Subscript / Superscript

+
    +
  • 19^th^
  • +
  • H~2~O
  • +
+

<ins>

+

++Inserted text++

+

<mark>

+

==Marked text==

+

Footnotes

+

Footnote 1 link1.

+

Footnote 2 link2.

+

Inline footnote^[Text of inline footnote] definition.

+

Duplicated footnote reference2.

+

Definition lists

+
+
Term 1
+
+

Definition 1 +with lazy continuation.

+
+
Term 2 with inline markup
+
+

Definition 2

+
{ some code, part of Definition 2 }
+
+

Third paragraph of definition 2.

+
+
+

Compact style:

+

Term 1 +~ Definition 1

+

Term 2 ~ Definition 2a -~ Definition 2b

Abbreviations

This is HTML abbreviation example.

It converts “HTML”, but keep intact partial entries like “xxxHTMLyyy” and so on.

*[HTML]: Hyper Text Markup Language

Custom containers

::: warning +~ Definition 2b

+

Abbreviations

+

This is HTML abbreviation example.

+

It converts “HTML”, but keep intact partial entries like “xxxHTMLyyy” and so on.

+

*[HTML]: Hyper Text Markup Language

+

Custom containers

+

::: warning here be dragons -:::


  1. Footnote can have markup

    and multiple paragraphs. ↩︎

  2. Footnote text. ↩︎ ↩︎

- \ No newline at end of file +:::

+
+
+
    +
  1. +

    Footnote can have markup

    +

    and multiple paragraphs. ↩︎

    +
  2. +
  3. +

    Footnote text. ↩︎ ↩︎

    +
  4. +
+
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/public/posts/blog-post-4/index.html b/public/posts/blog-post-4/index.html index 43f453d..d62cd10 100644 --- a/public/posts/blog-post-4/index.html +++ b/public/posts/blog-post-4/index.html @@ -1,35 +1,538 @@ -Blog Post 4 | TailBliss

Blog Post 4

Advertisement 😄

  • pica - high quality and fast image -resize in browser.
  • babelfish - developer friendly -i18n with plurals support and easy syntax.

You will like those projects!


h1 Heading 😊

h2 Heading

h3 Heading

h4 Heading

h5 Heading
h6 Heading

Horizontal Rules




Typographic replacements

Enable typographer option to see result.

(c) (C) (r) (R) (tm) (TM) (p) (P) +-

test.. test… test….. test?….. test!….

!!!!!! ???? ,, – —

“Smartypants, double quotes” and ‘single quotes’

Emphasis

This is bold text

This is bold text

This is italic text

This is italic text

Strikethrough

Blockquotes

Blockquotes can also be nested…

…by using additional greater-than signs right next to each other…

…or with spaces between arrows.

Lists

Unordered

  • Create a list by starting a line with +, -, or *
  • Sub-lists are made by indenting 2 spaces:
    • Marker character change forces new list start:
      • Ac tristique libero volutpat at
      • Facilisis in pretium nisl aliquet
      • Nulla volutpat aliquam velit
  • Very easy!

Ordered

  1. Lorem ipsum dolor sit amet

  2. Consectetur adipiscing elit

  3. Integer molestie lorem at massa

  4. You can use sequential numbers…

  5. …or keep all the numbers as 1.

Start numbering with offset:

  1. foo
  2. bar

Code

Inline code

Indented code

// Some comments
+
+
+
+
+    
+
+
+
+
+
+
+
+
+
+ Blog Post 4 | TailBliss 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+    
+    
+
+
+ +

+ Blog Post 4 +

+
+
+
+
+ + + + + + + + + +
+
+ +
+

Advertisement 😄

+
    +
  • pica - high quality and fast image +resize in browser.
  • +
  • babelfish - developer friendly +i18n with plurals support and easy syntax.
  • +
+

You will like those projects!

+
+

h1 Heading 😊

+

h2 Heading

+

h3 Heading

+

h4 Heading

+
h5 Heading
+
h6 Heading
+

Horizontal Rules

+
+
+
+

Typographic replacements

+

Enable typographer option to see result.

+

(c) (C) (r) (R) (tm) (TM) (p) (P) +-

+

test.. test… test….. test?….. test!….

+

!!!!!! ???? ,, – —

+

“Smartypants, double quotes” and ‘single quotes’

+

Emphasis

+

This is bold text

+

This is bold text

+

This is italic text

+

This is italic text

+

Strikethrough

+

Blockquotes

+
+

Blockquotes can also be nested…

+
+

…by using additional greater-than signs right next to each other…

+
+

…or with spaces between arrows.

+
+
+
+

Lists

+

Unordered

+
    +
  • Create a list by starting a line with +, -, or *
  • +
  • Sub-lists are made by indenting 2 spaces: +
      +
    • Marker character change forces new list start: +
        +
      • Ac tristique libero volutpat at
      • +
      +
        +
      • Facilisis in pretium nisl aliquet
      • +
      +
        +
      • Nulla volutpat aliquam velit
      • +
      +
    • +
    +
  • +
  • Very easy!
  • +
+

Ordered

+
    +
  1. +

    Lorem ipsum dolor sit amet

    +
  2. +
  3. +

    Consectetur adipiscing elit

    +
  4. +
  5. +

    Integer molestie lorem at massa

    +
  6. +
  7. +

    You can use sequential numbers…

    +
  8. +
  9. +

    …or keep all the numbers as 1.

    +
  10. +
+

Start numbering with offset:

+
    +
  1. foo
  2. +
  3. bar
  4. +
+

Code

+

Inline code

+

Indented code

+
// Some comments
 line 1 of code
 line 2 of code
 line 3 of code
-

Block code “fences”

Sample text here...
-

Syntax highlighting

var foo = function (bar) {
-  return bar++;
-};
-
-console.log(foo(5));
-

Tables

OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.

Right aligned columns

OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.

link text

link with title

Autoconverted link https://github.com/nodeca/pica (enable linkify to see)

Images

Minion -Stormtroopocat

Like links, Images also have a footnote style syntax

Alt text

With a reference later in the document defining the URL location:

Plugins

The killer feature of markdown-it is very effective support of -syntax plugins.

Emojies

Classic markup: 😉 :crush: 😢 :tear: 😆 😋

Shortcuts (emoticons): :-) :-( 8-) ;)

see how to change output with twemoji.

Subscript / Superscript

  • 19^th^
  • H~2~O

<ins>

++Inserted text++

<mark>

==Marked text==

Footnotes

Footnote 1 link1.

Footnote 2 link2.

Inline footnote^[Text of inline footnote] definition.

Duplicated footnote reference2.

Definition lists

Term 1

Definition 1 -with lazy continuation.

Term 2 with inline markup

Definition 2

{ some code, part of Definition 2 }
-

Third paragraph of definition 2.

Compact style:

Term 1 -~ Definition 1

Term 2 +

+

Block code “fences”

+
Sample text here...
+

Syntax highlighting

+
var foo = function (bar) {
+  return bar++;
+};
+
+console.log(foo(5));
+

Tables

+ + + + + + + + + + + + + + + + + + + + + +
OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.
+

Right aligned columns

+ + + + + + + + + + + + + + + + + + + + + +
OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.
+ +

link text

+

link with title

+

Autoconverted link https://github.com/nodeca/pica (enable linkify to see)

+

Images

+

Minion +Stormtroopocat

+

Like links, Images also have a footnote style syntax

+

Alt text

+

With a reference later in the document defining the URL location:

+

Plugins

+

The killer feature of markdown-it is very effective support of +syntax plugins.

+

Emojies

+
+

Classic markup: 😉 :crush: 😢 :tear: 😆 😋

+

Shortcuts (emoticons): :-) :-( 8-) ;)

+
+

see how to change output with twemoji.

+

Subscript / Superscript

+
    +
  • 19^th^
  • +
  • H~2~O
  • +
+

<ins>

+

++Inserted text++

+

<mark>

+

==Marked text==

+

Footnotes

+

Footnote 1 link1.

+

Footnote 2 link2.

+

Inline footnote^[Text of inline footnote] definition.

+

Duplicated footnote reference2.

+

Definition lists

+
+
Term 1
+
+

Definition 1 +with lazy continuation.

+
+
Term 2 with inline markup
+
+

Definition 2

+
{ some code, part of Definition 2 }
+
+

Third paragraph of definition 2.

+
+
+

Compact style:

+

Term 1 +~ Definition 1

+

Term 2 ~ Definition 2a -~ Definition 2b

Abbreviations

This is HTML abbreviation example.

It converts “HTML”, but keep intact partial entries like “xxxHTMLyyy” and so on.

*[HTML]: Hyper Text Markup Language

Custom containers

::: warning +~ Definition 2b

+

Abbreviations

+

This is HTML abbreviation example.

+

It converts “HTML”, but keep intact partial entries like “xxxHTMLyyy” and so on.

+

*[HTML]: Hyper Text Markup Language

+

Custom containers

+

::: warning here be dragons -:::


  1. Footnote can have markup

    and multiple paragraphs. ↩︎

  2. Footnote text. ↩︎ ↩︎

- \ No newline at end of file +:::

+
+
+
    +
  1. +

    Footnote can have markup

    +

    and multiple paragraphs. ↩︎

    +
  2. +
  3. +

    Footnote text. ↩︎ ↩︎

    +
  4. +
+
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/public/posts/blog-post-5/index.html b/public/posts/blog-post-5/index.html index 2eff041..95ca07e 100644 --- a/public/posts/blog-post-5/index.html +++ b/public/posts/blog-post-5/index.html @@ -1,35 +1,538 @@ -Blog Post 5 | TailBliss

Blog Post 5

Advertisement 😄

  • pica - high quality and fast image -resize in browser.
  • babelfish - developer friendly -i18n with plurals support and easy syntax.

You will like those projects!


h1 Heading 😊

h2 Heading

h3 Heading

h4 Heading

h5 Heading
h6 Heading

Horizontal Rules




Typographic replacements

Enable typographer option to see result.

(c) (C) (r) (R) (tm) (TM) (p) (P) +-

test.. test… test….. test?….. test!….

!!!!!! ???? ,, – —

“Smartypants, double quotes” and ‘single quotes’

Emphasis

This is bold text

This is bold text

This is italic text

This is italic text

Strikethrough

Blockquotes

Blockquotes can also be nested…

…by using additional greater-than signs right next to each other…

…or with spaces between arrows.

Lists

Unordered

  • Create a list by starting a line with +, -, or *
  • Sub-lists are made by indenting 2 spaces:
    • Marker character change forces new list start:
      • Ac tristique libero volutpat at
      • Facilisis in pretium nisl aliquet
      • Nulla volutpat aliquam velit
  • Very easy!

Ordered

  1. Lorem ipsum dolor sit amet

  2. Consectetur adipiscing elit

  3. Integer molestie lorem at massa

  4. You can use sequential numbers…

  5. …or keep all the numbers as 1.

Start numbering with offset:

  1. foo
  2. bar

Code

Inline code

Indented code

// Some comments
+
+
+
+
+    
+
+
+
+
+
+
+
+
+
+ Blog Post 5 | TailBliss 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+    
+    
+
+
+ +

+ Blog Post 5 +

+
+
+
+
+ + + + + + + + + +
+
+ +
+

Advertisement 😄

+
    +
  • pica - high quality and fast image +resize in browser.
  • +
  • babelfish - developer friendly +i18n with plurals support and easy syntax.
  • +
+

You will like those projects!

+
+

h1 Heading 😊

+

h2 Heading

+

h3 Heading

+

h4 Heading

+
h5 Heading
+
h6 Heading
+

Horizontal Rules

+
+
+
+

Typographic replacements

+

Enable typographer option to see result.

+

(c) (C) (r) (R) (tm) (TM) (p) (P) +-

+

test.. test… test….. test?….. test!….

+

!!!!!! ???? ,, – —

+

“Smartypants, double quotes” and ‘single quotes’

+

Emphasis

+

This is bold text

+

This is bold text

+

This is italic text

+

This is italic text

+

Strikethrough

+

Blockquotes

+
+

Blockquotes can also be nested…

+
+

…by using additional greater-than signs right next to each other…

+
+

…or with spaces between arrows.

+
+
+
+

Lists

+

Unordered

+
    +
  • Create a list by starting a line with +, -, or *
  • +
  • Sub-lists are made by indenting 2 spaces: +
      +
    • Marker character change forces new list start: +
        +
      • Ac tristique libero volutpat at
      • +
      +
        +
      • Facilisis in pretium nisl aliquet
      • +
      +
        +
      • Nulla volutpat aliquam velit
      • +
      +
    • +
    +
  • +
  • Very easy!
  • +
+

Ordered

+
    +
  1. +

    Lorem ipsum dolor sit amet

    +
  2. +
  3. +

    Consectetur adipiscing elit

    +
  4. +
  5. +

    Integer molestie lorem at massa

    +
  6. +
  7. +

    You can use sequential numbers…

    +
  8. +
  9. +

    …or keep all the numbers as 1.

    +
  10. +
+

Start numbering with offset:

+
    +
  1. foo
  2. +
  3. bar
  4. +
+

Code

+

Inline code

+

Indented code

+
// Some comments
 line 1 of code
 line 2 of code
 line 3 of code
-

Block code “fences”

Sample text here...
-

Syntax highlighting

var foo = function (bar) {
-  return bar++;
-};
-
-console.log(foo(5));
-

Tables

OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.

Right aligned columns

OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.

link text

link with title

Autoconverted link https://github.com/nodeca/pica (enable linkify to see)

Images

Minion -Stormtroopocat

Like links, Images also have a footnote style syntax

Alt text

With a reference later in the document defining the URL location:

Plugins

The killer feature of markdown-it is very effective support of -syntax plugins.

Emojies

Classic markup: 😉 :crush: 😢 :tear: 😆 😋

Shortcuts (emoticons): :-) :-( 8-) ;)

see how to change output with twemoji.

Subscript / Superscript

  • 19^th^
  • H~2~O

<ins>

++Inserted text++

<mark>

==Marked text==

Footnotes

Footnote 1 link1.

Footnote 2 link2.

Inline footnote^[Text of inline footnote] definition.

Duplicated footnote reference2.

Definition lists

Term 1

Definition 1 -with lazy continuation.

Term 2 with inline markup

Definition 2

{ some code, part of Definition 2 }
-

Third paragraph of definition 2.

Compact style:

Term 1 -~ Definition 1

Term 2 +

+

Block code “fences”

+
Sample text here...
+

Syntax highlighting

+
var foo = function (bar) {
+  return bar++;
+};
+
+console.log(foo(5));
+

Tables

+ + + + + + + + + + + + + + + + + + + + + +
OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.
+

Right aligned columns

+ + + + + + + + + + + + + + + + + + + + + +
OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.
+ +

link text

+

link with title

+

Autoconverted link https://github.com/nodeca/pica (enable linkify to see)

+

Images

+

Minion +Stormtroopocat

+

Like links, Images also have a footnote style syntax

+

Alt text

+

With a reference later in the document defining the URL location:

+

Plugins

+

The killer feature of markdown-it is very effective support of +syntax plugins.

+

Emojies

+
+

Classic markup: 😉 :crush: 😢 :tear: 😆 😋

+

Shortcuts (emoticons): :-) :-( 8-) ;)

+
+

see how to change output with twemoji.

+

Subscript / Superscript

+
    +
  • 19^th^
  • +
  • H~2~O
  • +
+

<ins>

+

++Inserted text++

+

<mark>

+

==Marked text==

+

Footnotes

+

Footnote 1 link1.

+

Footnote 2 link2.

+

Inline footnote^[Text of inline footnote] definition.

+

Duplicated footnote reference2.

+

Definition lists

+
+
Term 1
+
+

Definition 1 +with lazy continuation.

+
+
Term 2 with inline markup
+
+

Definition 2

+
{ some code, part of Definition 2 }
+
+

Third paragraph of definition 2.

+
+
+

Compact style:

+

Term 1 +~ Definition 1

+

Term 2 ~ Definition 2a -~ Definition 2b

Abbreviations

This is HTML abbreviation example.

It converts “HTML”, but keep intact partial entries like “xxxHTMLyyy” and so on.

*[HTML]: Hyper Text Markup Language

Custom containers

::: warning +~ Definition 2b

+

Abbreviations

+

This is HTML abbreviation example.

+

It converts “HTML”, but keep intact partial entries like “xxxHTMLyyy” and so on.

+

*[HTML]: Hyper Text Markup Language

+

Custom containers

+

::: warning here be dragons -:::


  1. Footnote can have markup

    and multiple paragraphs. ↩︎

  2. Footnote text. ↩︎ ↩︎

- \ No newline at end of file +:::

+
+
+
    +
  1. +

    Footnote can have markup

    +

    and multiple paragraphs. ↩︎

    +
  2. +
  3. +

    Footnote text. ↩︎ ↩︎

    +
  4. +
+
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/public/posts/blog-post-6/index.html b/public/posts/blog-post-6/index.html index fc28de8..c2f08d4 100644 --- a/public/posts/blog-post-6/index.html +++ b/public/posts/blog-post-6/index.html @@ -1,35 +1,538 @@ -Blog Post 6 | TailBliss

Blog Post 6

Advertisement 😄

  • pica - high quality and fast image -resize in browser.
  • babelfish - developer friendly -i18n with plurals support and easy syntax.

You will like those projects!


h1 Heading 😊

h2 Heading

h3 Heading

h4 Heading

h5 Heading
h6 Heading

Horizontal Rules




Typographic replacements

Enable typographer option to see result.

(c) (C) (r) (R) (tm) (TM) (p) (P) +-

test.. test… test….. test?….. test!….

!!!!!! ???? ,, – —

“Smartypants, double quotes” and ‘single quotes’

Emphasis

This is bold text

This is bold text

This is italic text

This is italic text

Strikethrough

Blockquotes

Blockquotes can also be nested…

…by using additional greater-than signs right next to each other…

…or with spaces between arrows.

Lists

Unordered

  • Create a list by starting a line with +, -, or *
  • Sub-lists are made by indenting 2 spaces:
    • Marker character change forces new list start:
      • Ac tristique libero volutpat at
      • Facilisis in pretium nisl aliquet
      • Nulla volutpat aliquam velit
  • Very easy!

Ordered

  1. Lorem ipsum dolor sit amet

  2. Consectetur adipiscing elit

  3. Integer molestie lorem at massa

  4. You can use sequential numbers…

  5. …or keep all the numbers as 1.

Start numbering with offset:

  1. foo
  2. bar

Code

Inline code

Indented code

// Some comments
+
+
+
+
+    
+
+
+
+
+
+
+
+
+
+ Blog Post 6 | TailBliss 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+    
+    
+
+
+ +

+ Blog Post 6 +

+
+
+
+
+ + + + + + + + + +
+
+ +
+

Advertisement 😄

+
    +
  • pica - high quality and fast image +resize in browser.
  • +
  • babelfish - developer friendly +i18n with plurals support and easy syntax.
  • +
+

You will like those projects!

+
+

h1 Heading 😊

+

h2 Heading

+

h3 Heading

+

h4 Heading

+
h5 Heading
+
h6 Heading
+

Horizontal Rules

+
+
+
+

Typographic replacements

+

Enable typographer option to see result.

+

(c) (C) (r) (R) (tm) (TM) (p) (P) +-

+

test.. test… test….. test?….. test!….

+

!!!!!! ???? ,, – —

+

“Smartypants, double quotes” and ‘single quotes’

+

Emphasis

+

This is bold text

+

This is bold text

+

This is italic text

+

This is italic text

+

Strikethrough

+

Blockquotes

+
+

Blockquotes can also be nested…

+
+

…by using additional greater-than signs right next to each other…

+
+

…or with spaces between arrows.

+
+
+
+

Lists

+

Unordered

+
    +
  • Create a list by starting a line with +, -, or *
  • +
  • Sub-lists are made by indenting 2 spaces: +
      +
    • Marker character change forces new list start: +
        +
      • Ac tristique libero volutpat at
      • +
      +
        +
      • Facilisis in pretium nisl aliquet
      • +
      +
        +
      • Nulla volutpat aliquam velit
      • +
      +
    • +
    +
  • +
  • Very easy!
  • +
+

Ordered

+
    +
  1. +

    Lorem ipsum dolor sit amet

    +
  2. +
  3. +

    Consectetur adipiscing elit

    +
  4. +
  5. +

    Integer molestie lorem at massa

    +
  6. +
  7. +

    You can use sequential numbers…

    +
  8. +
  9. +

    …or keep all the numbers as 1.

    +
  10. +
+

Start numbering with offset:

+
    +
  1. foo
  2. +
  3. bar
  4. +
+

Code

+

Inline code

+

Indented code

+
// Some comments
 line 1 of code
 line 2 of code
 line 3 of code
-

Block code “fences”

Sample text here...
-

Syntax highlighting

var foo = function (bar) {
-  return bar++;
-};
-
-console.log(foo(5));
-

Tables

OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.

Right aligned columns

OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.

link text

link with title

Autoconverted link https://github.com/nodeca/pica (enable linkify to see)

Images

Minion -Stormtroopocat

Like links, Images also have a footnote style syntax

Alt text

With a reference later in the document defining the URL location:

Plugins

The killer feature of markdown-it is very effective support of -syntax plugins.

Emojies

Classic markup: 😉 :crush: 😢 :tear: 😆 😋

Shortcuts (emoticons): :-) :-( 8-) ;)

see how to change output with twemoji.

Subscript / Superscript

  • 19^th^
  • H~2~O

<ins>

++Inserted text++

<mark>

==Marked text==

Footnotes

Footnote 1 link1.

Footnote 2 link2.

Inline footnote^[Text of inline footnote] definition.

Duplicated footnote reference2.

Definition lists

Term 1

Definition 1 -with lazy continuation.

Term 2 with inline markup

Definition 2

{ some code, part of Definition 2 }
-

Third paragraph of definition 2.

Compact style:

Term 1 -~ Definition 1

Term 2 +

+

Block code “fences”

+
Sample text here...
+

Syntax highlighting

+
var foo = function (bar) {
+  return bar++;
+};
+
+console.log(foo(5));
+

Tables

+ + + + + + + + + + + + + + + + + + + + + +
OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.
+

Right aligned columns

+ + + + + + + + + + + + + + + + + + + + + +
OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.
+ +

link text

+

link with title

+

Autoconverted link https://github.com/nodeca/pica (enable linkify to see)

+

Images

+

Minion +Stormtroopocat

+

Like links, Images also have a footnote style syntax

+

Alt text

+

With a reference later in the document defining the URL location:

+

Plugins

+

The killer feature of markdown-it is very effective support of +syntax plugins.

+

Emojies

+
+

Classic markup: 😉 :crush: 😢 :tear: 😆 😋

+

Shortcuts (emoticons): :-) :-( 8-) ;)

+
+

see how to change output with twemoji.

+

Subscript / Superscript

+
    +
  • 19^th^
  • +
  • H~2~O
  • +
+

<ins>

+

++Inserted text++

+

<mark>

+

==Marked text==

+

Footnotes

+

Footnote 1 link1.

+

Footnote 2 link2.

+

Inline footnote^[Text of inline footnote] definition.

+

Duplicated footnote reference2.

+

Definition lists

+
+
Term 1
+
+

Definition 1 +with lazy continuation.

+
+
Term 2 with inline markup
+
+

Definition 2

+
{ some code, part of Definition 2 }
+
+

Third paragraph of definition 2.

+
+
+

Compact style:

+

Term 1 +~ Definition 1

+

Term 2 ~ Definition 2a -~ Definition 2b

Abbreviations

This is HTML abbreviation example.

It converts “HTML”, but keep intact partial entries like “xxxHTMLyyy” and so on.

*[HTML]: Hyper Text Markup Language

Custom containers

::: warning +~ Definition 2b

+

Abbreviations

+

This is HTML abbreviation example.

+

It converts “HTML”, but keep intact partial entries like “xxxHTMLyyy” and so on.

+

*[HTML]: Hyper Text Markup Language

+

Custom containers

+

::: warning here be dragons -:::


  1. Footnote can have markup

    and multiple paragraphs. ↩︎

  2. Footnote text. ↩︎ ↩︎

- \ No newline at end of file +:::

+
+
+
    +
  1. +

    Footnote can have markup

    +

    and multiple paragraphs. ↩︎

    +
  2. +
  3. +

    Footnote text. ↩︎ ↩︎

    +
  4. +
+
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/public/posts/index.html b/public/posts/index.html index f2a8db3..78fe06b 100644 --- a/public/posts/index.html +++ b/public/posts/index.html @@ -1,62 +1,791 @@ -Posts | TailBliss

Posts

Blog Post 1

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -Blog

TailBliss

- -2 min -read
News Post 1

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -News

TailBliss

- -2 min -read
News Post 2

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -News

TailBliss

- -2 min -read
News Post 4

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -News

TailBliss

- -2 min -read
News Post 5

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -News

TailBliss

- -2 min -read
News Post 6

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -News

TailBliss

- -2 min -read
Blog Post 2

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -Blog

TailBliss

- -2 min -read
Blog Post 3

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -Blog

TailBliss

- -2 min -read
Blog Post 4

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -Blog

TailBliss

- -2 min -read
- \ No newline at end of file + + + + + + + + + + + + + + + Posts | TailBliss + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +

+ Posts +

+
+
+ +
+
+
+ +
+ + + + + + +
+
+ + Blog Post 1 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + Blog
+
+ +
+

+ TailBliss +

+
+ + + 2 min + read +
+
+
+
+
+ +
+ + + + + + +
+
+ + News Post 1 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + News
+
+ +
+

+ TailBliss +

+
+ + + 2 min + read +
+
+
+
+
+ +
+ + + + + + +
+
+ + News Post 2 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + News
+
+ +
+

+ TailBliss +

+
+ + + 2 min + read +
+
+
+
+
+ +
+ + + + + + +
+
+ + News Post 4 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + News
+
+ +
+

+ TailBliss +

+
+ + + 2 min + read +
+
+
+
+
+ +
+ + + + + + +
+
+ + News Post 5 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + News
+
+ +
+

+ TailBliss +

+
+ + + 2 min + read +
+
+
+
+
+ +
+ + + + + + +
+
+ + News Post 6 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + News
+
+ +
+

+ TailBliss +

+
+ + + 2 min + read +
+
+
+
+
+ +
+ + + + + + +
+
+ + Blog Post 2 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + Blog
+
+ +
+

+ TailBliss +

+
+ + + 2 min + read +
+
+
+
+
+ +
+ + + + + + +
+
+ + Blog Post 3 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + Blog
+
+ +
+

+ TailBliss +

+
+ + + 2 min + read +
+
+
+
+
+ +
+ + + + + + +
+
+ + Blog Post 4 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + Blog
+
+ +
+

+ TailBliss +

+
+ + + 2 min + read +
+
+
+
+
+ +
+
+
+
+
+ + + + + + +
+
+ + + + + + + + + + \ No newline at end of file diff --git a/public/posts/index.xml b/public/posts/index.xml index d4559bb..6944560 100644 --- a/public/posts/index.xml +++ b/public/posts/index.xml @@ -1 +1,119 @@ -Posts on TailBlisshttps://tailbliss.vercel.app/posts/Recent content in Posts on TailBlissHugo -- gohugo.ioen-usSat, 18 Jun 2022 11:10:36 +0800Blog Post 1https://tailbliss.vercel.app/posts/blog-post-1/Sat, 18 Jun 2022 11:10:36 +0800https://tailbliss.vercel.app/posts/blog-post-1/Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.News Post 1https://tailbliss.vercel.app/posts/news-post-1/Wed, 18 May 2022 11:10:36 +0800https://tailbliss.vercel.app/posts/news-post-1/Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.News Post 2https://tailbliss.vercel.app/posts/news-post-2/Mon, 18 Apr 2022 11:10:36 +0800https://tailbliss.vercel.app/posts/news-post-2/Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.News Post 4https://tailbliss.vercel.app/posts/news-post-4/Fri, 18 Mar 2022 11:10:36 +0800https://tailbliss.vercel.app/posts/news-post-4/<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.</p>News Post 5https://tailbliss.vercel.app/posts/news-post-5/Fri, 18 Mar 2022 11:10:36 +0800https://tailbliss.vercel.app/posts/news-post-5/<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.</p>News Post 6https://tailbliss.vercel.app/posts/news-post-6/Fri, 18 Mar 2022 11:10:36 +0800https://tailbliss.vercel.app/posts/news-post-6/<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.</p>Blog Post 2https://tailbliss.vercel.app/posts/blog-post-2/Sat, 18 Dec 2021 11:10:36 +0800https://tailbliss.vercel.app/posts/blog-post-2/Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.Blog Post 3https://tailbliss.vercel.app/posts/blog-post-3/Sat, 18 Dec 2021 11:10:36 +0800https://tailbliss.vercel.app/posts/blog-post-3/Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.Blog Post 4https://tailbliss.vercel.app/posts/blog-post-4/Sat, 18 Dec 2021 11:10:36 +0800https://tailbliss.vercel.app/posts/blog-post-4/Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.Blog Post 5https://tailbliss.vercel.app/posts/blog-post-5/Sat, 18 Dec 2021 11:10:36 +0800https://tailbliss.vercel.app/posts/blog-post-5/Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.Blog Post 6https://tailbliss.vercel.app/posts/blog-post-6/Sat, 18 Dec 2021 11:10:36 +0800https://tailbliss.vercel.app/posts/blog-post-6/Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.News Post 3https://tailbliss.vercel.app/posts/news-post-3/Sat, 18 Dec 2021 11:10:36 +0800https://tailbliss.vercel.app/posts/news-post-3/Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. \ No newline at end of file + + + + Posts on TailBliss + https://tailbliss.vercel.app/posts/ + Recent content in Posts on TailBliss + Hugo -- gohugo.io + en-us + Sat, 18 Jun 2022 11:10:36 +0800 + + Blog Post 1 + https://tailbliss.vercel.app/posts/blog-post-1/ + Sat, 18 Jun 2022 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/blog-post-1/ + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. + + + + News Post 1 + https://tailbliss.vercel.app/posts/news-post-1/ + Wed, 18 May 2022 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/news-post-1/ + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. + + + + News Post 2 + https://tailbliss.vercel.app/posts/news-post-2/ + Mon, 18 Apr 2022 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/news-post-2/ + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. + + + + News Post 4 + https://tailbliss.vercel.app/posts/news-post-4/ + Fri, 18 Mar 2022 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/news-post-4/ + <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.</p> + + + + News Post 5 + https://tailbliss.vercel.app/posts/news-post-5/ + Fri, 18 Mar 2022 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/news-post-5/ + <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.</p> + + + + News Post 6 + https://tailbliss.vercel.app/posts/news-post-6/ + Fri, 18 Mar 2022 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/news-post-6/ + <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.</p> + + + + Blog Post 2 + https://tailbliss.vercel.app/posts/blog-post-2/ + Sat, 18 Dec 2021 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/blog-post-2/ + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. + + + + Blog Post 3 + https://tailbliss.vercel.app/posts/blog-post-3/ + Sat, 18 Dec 2021 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/blog-post-3/ + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. + + + + Blog Post 4 + https://tailbliss.vercel.app/posts/blog-post-4/ + Sat, 18 Dec 2021 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/blog-post-4/ + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. + + + + Blog Post 5 + https://tailbliss.vercel.app/posts/blog-post-5/ + Sat, 18 Dec 2021 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/blog-post-5/ + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. + + + + Blog Post 6 + https://tailbliss.vercel.app/posts/blog-post-6/ + Sat, 18 Dec 2021 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/blog-post-6/ + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. + + + + News Post 3 + https://tailbliss.vercel.app/posts/news-post-3/ + Sat, 18 Dec 2021 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/news-post-3/ + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. + + + + diff --git a/public/posts/news-post-1/index.html b/public/posts/news-post-1/index.html index b0e70af..956a602 100644 --- a/public/posts/news-post-1/index.html +++ b/public/posts/news-post-1/index.html @@ -1,35 +1,538 @@ -News Post 1 | TailBliss

News Post 1

Advertisement 😄

  • pica - high quality and fast image -resize in browser.
  • babelfish - developer friendly -i18n with plurals support and easy syntax.

You will like those projects!


h1 Heading 😊

h2 Heading

h3 Heading

h4 Heading

h5 Heading
h6 Heading

Horizontal Rules




Typographic replacements

Enable typographer option to see result.

(c) (C) (r) (R) (tm) (TM) (p) (P) +-

test.. test… test….. test?….. test!….

!!!!!! ???? ,, – —

“Smartypants, double quotes” and ‘single quotes’

Emphasis

This is bold text

This is bold text

This is italic text

This is italic text

Strikethrough

Blockquotes

Blockquotes can also be nested…

…by using additional greater-than signs right next to each other…

…or with spaces between arrows.

Lists

Unordered

  • Create a list by starting a line with +, -, or *
  • Sub-lists are made by indenting 2 spaces:
    • Marker character change forces new list start:
      • Ac tristique libero volutpat at
      • Facilisis in pretium nisl aliquet
      • Nulla volutpat aliquam velit
  • Very easy!

Ordered

  1. Lorem ipsum dolor sit amet

  2. Consectetur adipiscing elit

  3. Integer molestie lorem at massa

  4. You can use sequential numbers…

  5. …or keep all the numbers as 1.

Start numbering with offset:

  1. foo
  2. bar

Code

Inline code

Indented code

// Some comments
+
+
+
+
+    
+
+
+
+
+
+
+
+
+
+ News Post 1 | TailBliss 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+    
+    
+
+
+ +

+ News Post 1 +

+
+
+
+
+ + + + + + + + + +
+
+ +
+

Advertisement 😄

+
    +
  • pica - high quality and fast image +resize in browser.
  • +
  • babelfish - developer friendly +i18n with plurals support and easy syntax.
  • +
+

You will like those projects!

+
+

h1 Heading 😊

+

h2 Heading

+

h3 Heading

+

h4 Heading

+
h5 Heading
+
h6 Heading
+

Horizontal Rules

+
+
+
+

Typographic replacements

+

Enable typographer option to see result.

+

(c) (C) (r) (R) (tm) (TM) (p) (P) +-

+

test.. test… test….. test?….. test!….

+

!!!!!! ???? ,, – —

+

“Smartypants, double quotes” and ‘single quotes’

+

Emphasis

+

This is bold text

+

This is bold text

+

This is italic text

+

This is italic text

+

Strikethrough

+

Blockquotes

+
+

Blockquotes can also be nested…

+
+

…by using additional greater-than signs right next to each other…

+
+

…or with spaces between arrows.

+
+
+
+

Lists

+

Unordered

+
    +
  • Create a list by starting a line with +, -, or *
  • +
  • Sub-lists are made by indenting 2 spaces: +
      +
    • Marker character change forces new list start: +
        +
      • Ac tristique libero volutpat at
      • +
      +
        +
      • Facilisis in pretium nisl aliquet
      • +
      +
        +
      • Nulla volutpat aliquam velit
      • +
      +
    • +
    +
  • +
  • Very easy!
  • +
+

Ordered

+
    +
  1. +

    Lorem ipsum dolor sit amet

    +
  2. +
  3. +

    Consectetur adipiscing elit

    +
  4. +
  5. +

    Integer molestie lorem at massa

    +
  6. +
  7. +

    You can use sequential numbers…

    +
  8. +
  9. +

    …or keep all the numbers as 1.

    +
  10. +
+

Start numbering with offset:

+
    +
  1. foo
  2. +
  3. bar
  4. +
+

Code

+

Inline code

+

Indented code

+
// Some comments
 line 1 of code
 line 2 of code
 line 3 of code
-

Block code “fences”

Sample text here...
-

Syntax highlighting

var foo = function (bar) {
-  return bar++;
-};
-
-console.log(foo(5));
-

Tables

OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.

Right aligned columns

OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.

link text

link with title

Autoconverted link https://github.com/nodeca/pica (enable linkify to see)

Images

Minion -Stormtroopocat

Like links, Images also have a footnote style syntax

Alt text

With a reference later in the document defining the URL location:

Plugins

The killer feature of markdown-it is very effective support of -syntax plugins.

Emojies

Classic markup: 😉 :crush: 😢 :tear: 😆 😋

Shortcuts (emoticons): :-) :-( 8-) ;)

see how to change output with twemoji.

Subscript / Superscript

  • 19^th^
  • H~2~O

<ins>

++Inserted text++

<mark>

==Marked text==

Footnotes

Footnote 1 link1.

Footnote 2 link2.

Inline footnote^[Text of inline footnote] definition.

Duplicated footnote reference2.

Definition lists

Term 1

Definition 1 -with lazy continuation.

Term 2 with inline markup

Definition 2

{ some code, part of Definition 2 }
-

Third paragraph of definition 2.

Compact style:

Term 1 -~ Definition 1

Term 2 +

+

Block code “fences”

+
Sample text here...
+

Syntax highlighting

+
var foo = function (bar) {
+  return bar++;
+};
+
+console.log(foo(5));
+

Tables

+ + + + + + + + + + + + + + + + + + + + + +
OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.
+

Right aligned columns

+ + + + + + + + + + + + + + + + + + + + + +
OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.
+ +

link text

+

link with title

+

Autoconverted link https://github.com/nodeca/pica (enable linkify to see)

+

Images

+

Minion +Stormtroopocat

+

Like links, Images also have a footnote style syntax

+

Alt text

+

With a reference later in the document defining the URL location:

+

Plugins

+

The killer feature of markdown-it is very effective support of +syntax plugins.

+

Emojies

+
+

Classic markup: 😉 :crush: 😢 :tear: 😆 😋

+

Shortcuts (emoticons): :-) :-( 8-) ;)

+
+

see how to change output with twemoji.

+

Subscript / Superscript

+
    +
  • 19^th^
  • +
  • H~2~O
  • +
+

<ins>

+

++Inserted text++

+

<mark>

+

==Marked text==

+

Footnotes

+

Footnote 1 link1.

+

Footnote 2 link2.

+

Inline footnote^[Text of inline footnote] definition.

+

Duplicated footnote reference2.

+

Definition lists

+
+
Term 1
+
+

Definition 1 +with lazy continuation.

+
+
Term 2 with inline markup
+
+

Definition 2

+
{ some code, part of Definition 2 }
+
+

Third paragraph of definition 2.

+
+
+

Compact style:

+

Term 1 +~ Definition 1

+

Term 2 ~ Definition 2a -~ Definition 2b

Abbreviations

This is HTML abbreviation example.

It converts “HTML”, but keep intact partial entries like “xxxHTMLyyy” and so on.

*[HTML]: Hyper Text Markup Language

Custom containers

::: warning +~ Definition 2b

+

Abbreviations

+

This is HTML abbreviation example.

+

It converts “HTML”, but keep intact partial entries like “xxxHTMLyyy” and so on.

+

*[HTML]: Hyper Text Markup Language

+

Custom containers

+

::: warning here be dragons -:::


  1. Footnote can have markup

    and multiple paragraphs. ↩︎

  2. Footnote text. ↩︎ ↩︎

- \ No newline at end of file +:::

+
+
+
    +
  1. +

    Footnote can have markup

    +

    and multiple paragraphs. ↩︎

    +
  2. +
  3. +

    Footnote text. ↩︎ ↩︎

    +
  4. +
+
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/public/posts/news-post-2/index.html b/public/posts/news-post-2/index.html index 090db8e..b130130 100644 --- a/public/posts/news-post-2/index.html +++ b/public/posts/news-post-2/index.html @@ -1,35 +1,538 @@ -News Post 2 | TailBliss

News Post 2

Advertisement 😄

  • pica - high quality and fast image -resize in browser.
  • babelfish - developer friendly -i18n with plurals support and easy syntax.

You will like those projects!


h1 Heading 😊

h2 Heading

h3 Heading

h4 Heading

h5 Heading
h6 Heading

Horizontal Rules




Typographic replacements

Enable typographer option to see result.

(c) (C) (r) (R) (tm) (TM) (p) (P) +-

test.. test… test….. test?….. test!….

!!!!!! ???? ,, – —

“Smartypants, double quotes” and ‘single quotes’

Emphasis

This is bold text

This is bold text

This is italic text

This is italic text

Strikethrough

Blockquotes

Blockquotes can also be nested…

…by using additional greater-than signs right next to each other…

…or with spaces between arrows.

Lists

Unordered

  • Create a list by starting a line with +, -, or *
  • Sub-lists are made by indenting 2 spaces:
    • Marker character change forces new list start:
      • Ac tristique libero volutpat at
      • Facilisis in pretium nisl aliquet
      • Nulla volutpat aliquam velit
  • Very easy!

Ordered

  1. Lorem ipsum dolor sit amet

  2. Consectetur adipiscing elit

  3. Integer molestie lorem at massa

  4. You can use sequential numbers…

  5. …or keep all the numbers as 1.

Start numbering with offset:

  1. foo
  2. bar

Code

Inline code

Indented code

// Some comments
+
+
+
+
+    
+
+
+
+
+
+
+
+
+
+ News Post 2 | TailBliss 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+    
+    
+
+
+ +

+ News Post 2 +

+
+
+
+
+ + + + + + + + + +
+
+ +
+

Advertisement 😄

+
    +
  • pica - high quality and fast image +resize in browser.
  • +
  • babelfish - developer friendly +i18n with plurals support and easy syntax.
  • +
+

You will like those projects!

+
+

h1 Heading 😊

+

h2 Heading

+

h3 Heading

+

h4 Heading

+
h5 Heading
+
h6 Heading
+

Horizontal Rules

+
+
+
+

Typographic replacements

+

Enable typographer option to see result.

+

(c) (C) (r) (R) (tm) (TM) (p) (P) +-

+

test.. test… test….. test?….. test!….

+

!!!!!! ???? ,, – —

+

“Smartypants, double quotes” and ‘single quotes’

+

Emphasis

+

This is bold text

+

This is bold text

+

This is italic text

+

This is italic text

+

Strikethrough

+

Blockquotes

+
+

Blockquotes can also be nested…

+
+

…by using additional greater-than signs right next to each other…

+
+

…or with spaces between arrows.

+
+
+
+

Lists

+

Unordered

+
    +
  • Create a list by starting a line with +, -, or *
  • +
  • Sub-lists are made by indenting 2 spaces: +
      +
    • Marker character change forces new list start: +
        +
      • Ac tristique libero volutpat at
      • +
      +
        +
      • Facilisis in pretium nisl aliquet
      • +
      +
        +
      • Nulla volutpat aliquam velit
      • +
      +
    • +
    +
  • +
  • Very easy!
  • +
+

Ordered

+
    +
  1. +

    Lorem ipsum dolor sit amet

    +
  2. +
  3. +

    Consectetur adipiscing elit

    +
  4. +
  5. +

    Integer molestie lorem at massa

    +
  6. +
  7. +

    You can use sequential numbers…

    +
  8. +
  9. +

    …or keep all the numbers as 1.

    +
  10. +
+

Start numbering with offset:

+
    +
  1. foo
  2. +
  3. bar
  4. +
+

Code

+

Inline code

+

Indented code

+
// Some comments
 line 1 of code
 line 2 of code
 line 3 of code
-

Block code “fences”

Sample text here...
-

Syntax highlighting

var foo = function (bar) {
-  return bar++;
-};
-
-console.log(foo(5));
-

Tables

OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.

Right aligned columns

OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.

link text

link with title

Autoconverted link https://github.com/nodeca/pica (enable linkify to see)

Images

Minion -Stormtroopocat

Like links, Images also have a footnote style syntax

Alt text

With a reference later in the document defining the URL location:

Plugins

The killer feature of markdown-it is very effective support of -syntax plugins.

Emojies

Classic markup: 😉 :crush: 😢 :tear: 😆 😋

Shortcuts (emoticons): :-) :-( 8-) ;)

see how to change output with twemoji.

Subscript / Superscript

  • 19^th^
  • H~2~O

<ins>

++Inserted text++

<mark>

==Marked text==

Footnotes

Footnote 1 link1.

Footnote 2 link2.

Inline footnote^[Text of inline footnote] definition.

Duplicated footnote reference2.

Definition lists

Term 1

Definition 1 -with lazy continuation.

Term 2 with inline markup

Definition 2

{ some code, part of Definition 2 }
-

Third paragraph of definition 2.

Compact style:

Term 1 -~ Definition 1

Term 2 +

+

Block code “fences”

+
Sample text here...
+

Syntax highlighting

+
var foo = function (bar) {
+  return bar++;
+};
+
+console.log(foo(5));
+

Tables

+ + + + + + + + + + + + + + + + + + + + + +
OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.
+

Right aligned columns

+ + + + + + + + + + + + + + + + + + + + + +
OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.
+ +

link text

+

link with title

+

Autoconverted link https://github.com/nodeca/pica (enable linkify to see)

+

Images

+

Minion +Stormtroopocat

+

Like links, Images also have a footnote style syntax

+

Alt text

+

With a reference later in the document defining the URL location:

+

Plugins

+

The killer feature of markdown-it is very effective support of +syntax plugins.

+

Emojies

+
+

Classic markup: 😉 :crush: 😢 :tear: 😆 😋

+

Shortcuts (emoticons): :-) :-( 8-) ;)

+
+

see how to change output with twemoji.

+

Subscript / Superscript

+
    +
  • 19^th^
  • +
  • H~2~O
  • +
+

<ins>

+

++Inserted text++

+

<mark>

+

==Marked text==

+

Footnotes

+

Footnote 1 link1.

+

Footnote 2 link2.

+

Inline footnote^[Text of inline footnote] definition.

+

Duplicated footnote reference2.

+

Definition lists

+
+
Term 1
+
+

Definition 1 +with lazy continuation.

+
+
Term 2 with inline markup
+
+

Definition 2

+
{ some code, part of Definition 2 }
+
+

Third paragraph of definition 2.

+
+
+

Compact style:

+

Term 1 +~ Definition 1

+

Term 2 ~ Definition 2a -~ Definition 2b

Abbreviations

This is HTML abbreviation example.

It converts “HTML”, but keep intact partial entries like “xxxHTMLyyy” and so on.

*[HTML]: Hyper Text Markup Language

Custom containers

::: warning +~ Definition 2b

+

Abbreviations

+

This is HTML abbreviation example.

+

It converts “HTML”, but keep intact partial entries like “xxxHTMLyyy” and so on.

+

*[HTML]: Hyper Text Markup Language

+

Custom containers

+

::: warning here be dragons -:::


  1. Footnote can have markup

    and multiple paragraphs. ↩︎

  2. Footnote text. ↩︎ ↩︎

- \ No newline at end of file +:::

+
+
+
    +
  1. +

    Footnote can have markup

    +

    and multiple paragraphs. ↩︎

    +
  2. +
  3. +

    Footnote text. ↩︎ ↩︎

    +
  4. +
+
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/public/posts/news-post-3/index.html b/public/posts/news-post-3/index.html index 38acd9e..29dc387 100644 --- a/public/posts/news-post-3/index.html +++ b/public/posts/news-post-3/index.html @@ -1,35 +1,538 @@ -News Post 3 | TailBliss

News Post 3

Advertisement 😄

  • pica - high quality and fast image -resize in browser.
  • babelfish - developer friendly -i18n with plurals support and easy syntax.

You will like those projects!


h1 Heading 😊

h2 Heading

h3 Heading

h4 Heading

h5 Heading
h6 Heading

Horizontal Rules




Typographic replacements

Enable typographer option to see result.

(c) (C) (r) (R) (tm) (TM) (p) (P) +-

test.. test… test….. test?….. test!….

!!!!!! ???? ,, – —

“Smartypants, double quotes” and ‘single quotes’

Emphasis

This is bold text

This is bold text

This is italic text

This is italic text

Strikethrough

Blockquotes

Blockquotes can also be nested…

…by using additional greater-than signs right next to each other…

…or with spaces between arrows.

Lists

Unordered

  • Create a list by starting a line with +, -, or *
  • Sub-lists are made by indenting 2 spaces:
    • Marker character change forces new list start:
      • Ac tristique libero volutpat at
      • Facilisis in pretium nisl aliquet
      • Nulla volutpat aliquam velit
  • Very easy!

Ordered

  1. Lorem ipsum dolor sit amet

  2. Consectetur adipiscing elit

  3. Integer molestie lorem at massa

  4. You can use sequential numbers…

  5. …or keep all the numbers as 1.

Start numbering with offset:

  1. foo
  2. bar

Code

Inline code

Indented code

// Some comments
+
+
+
+
+    
+
+
+
+
+
+
+
+
+
+ News Post 3 | TailBliss 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+    
+    
+
+
+ +

+ News Post 3 +

+
+
+
+
+ + + + + + + + + +
+
+ +
+

Advertisement 😄

+
    +
  • pica - high quality and fast image +resize in browser.
  • +
  • babelfish - developer friendly +i18n with plurals support and easy syntax.
  • +
+

You will like those projects!

+
+

h1 Heading 😊

+

h2 Heading

+

h3 Heading

+

h4 Heading

+
h5 Heading
+
h6 Heading
+

Horizontal Rules

+
+
+
+

Typographic replacements

+

Enable typographer option to see result.

+

(c) (C) (r) (R) (tm) (TM) (p) (P) +-

+

test.. test… test….. test?….. test!….

+

!!!!!! ???? ,, – —

+

“Smartypants, double quotes” and ‘single quotes’

+

Emphasis

+

This is bold text

+

This is bold text

+

This is italic text

+

This is italic text

+

Strikethrough

+

Blockquotes

+
+

Blockquotes can also be nested…

+
+

…by using additional greater-than signs right next to each other…

+
+

…or with spaces between arrows.

+
+
+
+

Lists

+

Unordered

+
    +
  • Create a list by starting a line with +, -, or *
  • +
  • Sub-lists are made by indenting 2 spaces: +
      +
    • Marker character change forces new list start: +
        +
      • Ac tristique libero volutpat at
      • +
      +
        +
      • Facilisis in pretium nisl aliquet
      • +
      +
        +
      • Nulla volutpat aliquam velit
      • +
      +
    • +
    +
  • +
  • Very easy!
  • +
+

Ordered

+
    +
  1. +

    Lorem ipsum dolor sit amet

    +
  2. +
  3. +

    Consectetur adipiscing elit

    +
  4. +
  5. +

    Integer molestie lorem at massa

    +
  6. +
  7. +

    You can use sequential numbers…

    +
  8. +
  9. +

    …or keep all the numbers as 1.

    +
  10. +
+

Start numbering with offset:

+
    +
  1. foo
  2. +
  3. bar
  4. +
+

Code

+

Inline code

+

Indented code

+
// Some comments
 line 1 of code
 line 2 of code
 line 3 of code
-

Block code “fences”

Sample text here...
-

Syntax highlighting

var foo = function (bar) {
-  return bar++;
-};
-
-console.log(foo(5));
-

Tables

OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.

Right aligned columns

OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.

link text

link with title

Autoconverted link https://github.com/nodeca/pica (enable linkify to see)

Images

Minion -Stormtroopocat

Like links, Images also have a footnote style syntax

Alt text

With a reference later in the document defining the URL location:

Plugins

The killer feature of markdown-it is very effective support of -syntax plugins.

Emojies

Classic markup: 😉 :crush: 😢 :tear: 😆 😋

Shortcuts (emoticons): :-) :-( 8-) ;)

see how to change output with twemoji.

Subscript / Superscript

  • 19^th^
  • H~2~O

<ins>

++Inserted text++

<mark>

==Marked text==

Footnotes

Footnote 1 link1.

Footnote 2 link2.

Inline footnote^[Text of inline footnote] definition.

Duplicated footnote reference2.

Definition lists

Term 1

Definition 1 -with lazy continuation.

Term 2 with inline markup

Definition 2

{ some code, part of Definition 2 }
-

Third paragraph of definition 2.

Compact style:

Term 1 -~ Definition 1

Term 2 +

+

Block code “fences”

+
Sample text here...
+

Syntax highlighting

+
var foo = function (bar) {
+  return bar++;
+};
+
+console.log(foo(5));
+

Tables

+ + + + + + + + + + + + + + + + + + + + + +
OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.
+

Right aligned columns

+ + + + + + + + + + + + + + + + + + + + + +
OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.
+ +

link text

+

link with title

+

Autoconverted link https://github.com/nodeca/pica (enable linkify to see)

+

Images

+

Minion +Stormtroopocat

+

Like links, Images also have a footnote style syntax

+

Alt text

+

With a reference later in the document defining the URL location:

+

Plugins

+

The killer feature of markdown-it is very effective support of +syntax plugins.

+

Emojies

+
+

Classic markup: 😉 :crush: 😢 :tear: 😆 😋

+

Shortcuts (emoticons): :-) :-( 8-) ;)

+
+

see how to change output with twemoji.

+

Subscript / Superscript

+
    +
  • 19^th^
  • +
  • H~2~O
  • +
+

<ins>

+

++Inserted text++

+

<mark>

+

==Marked text==

+

Footnotes

+

Footnote 1 link1.

+

Footnote 2 link2.

+

Inline footnote^[Text of inline footnote] definition.

+

Duplicated footnote reference2.

+

Definition lists

+
+
Term 1
+
+

Definition 1 +with lazy continuation.

+
+
Term 2 with inline markup
+
+

Definition 2

+
{ some code, part of Definition 2 }
+
+

Third paragraph of definition 2.

+
+
+

Compact style:

+

Term 1 +~ Definition 1

+

Term 2 ~ Definition 2a -~ Definition 2b

Abbreviations

This is HTML abbreviation example.

It converts “HTML”, but keep intact partial entries like “xxxHTMLyyy” and so on.

*[HTML]: Hyper Text Markup Language

Custom containers

::: warning +~ Definition 2b

+

Abbreviations

+

This is HTML abbreviation example.

+

It converts “HTML”, but keep intact partial entries like “xxxHTMLyyy” and so on.

+

*[HTML]: Hyper Text Markup Language

+

Custom containers

+

::: warning here be dragons -:::


  1. Footnote can have markup

    and multiple paragraphs. ↩︎

  2. Footnote text. ↩︎ ↩︎

- \ No newline at end of file +:::

+
+
+
    +
  1. +

    Footnote can have markup

    +

    and multiple paragraphs. ↩︎

    +
  2. +
  3. +

    Footnote text. ↩︎ ↩︎

    +
  4. +
+
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/public/posts/news-post-4/index.html b/public/posts/news-post-4/index.html index 8159e5d..6a5a901 100644 --- a/public/posts/news-post-4/index.html +++ b/public/posts/news-post-4/index.html @@ -1,14 +1,322 @@ -News Post 4 | TailBliss

News Post 4

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Vestibulum vel convallis felis. Ut finibus lorem vestibulum lobortis rhoncus. Sed mi tellus, volutpat aliquam enim sed, efficitur cursus lacus. Nunc congue, justo luctus vehicula finibus, tortor justo consectetur ligula, at lobortis nisl ipsum eu mauris. Fusce finibus mi in enim mollis dapibus. In non leo et mi pharetra vehicula vel ut felis. Nam eros metus, tristique a tellus vitae, aliquet posuere turpis. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Pellentesque non molestie orci, id scelerisque odio. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Suspendisse pharetra rhoncus massa, eu sagittis purus consectetur eget.

Duis vitae consectetur dolor. Sed consectetur nibh ligula, vitae eleifend velit vulputate non. Nam eleifend, tellus ut commodo hendrerit, leo erat dictum est, non faucibus sapien mauris eu sapien. Sed et tortor sit amet ex rhoncus sagittis. Vestibulum pretium nisl non sodales congue. Ut sit amet iaculis felis. Nulla tristique tristique posuere.

Sed neque ex, euismod vel leo vitae, ornare elementum neque. Ut laoreet metus nec ex euismod mattis. Vivamus dapibus suscipit risus nec gravida. Mauris est odio, maximus eget sem eu, rhoncus tincidunt ipsum. Proin laoreet maximus dolor, in euismod purus suscipit et. Praesent eleifend mi sed massa pulvinar dictum. Curabitur leo lorem, pharetra sit amet orci in, maximus cursus purus. Integer finibus massa tincidunt orci gravida mattis. Praesent nec orci libero. Suspendisse vel magna posuere libero ultricies lacinia.

Pellentesque at feugiat arcu, at tincidunt est. Sed vel urna congue, porta dui sed, lacinia velit. Nulla porta vehicula sem, id porta sem suscipit id. Ut faucibus erat ac odio tempus molestie at a nisi. Pellentesque id ornare ipsum, a vestibulum nisi. Nullam id felis nec dolor tincidunt viverra quis ac tortor. Maecenas id viverra tellus, eu egestas tellus. Integer feugiat et arcu sit amet venenatis. Nam posuere mi quis justo rhoncus, nec cursus quam venenatis. Duis sapien ante, egestas sit amet nulla sit amet, facilisis lobortis lectus. Nullam non arcu pretium, pretium ligula in, sagittis nibh. Aenean egestas eget ipsum tempus feugiat.

Aliquam tortor erat, elementum a neque et, ultricies mollis nunc. Etiam bibendum eu magna ut commodo. Curabitur gravida lorem nec ultrices blandit. Nam egestas est a purus porttitor cursus. Suspendisse dapibus scelerisque odio facilisis porta. Curabitur urna felis, vehicula eget aliquam ut, elementum ac est. Vestibulum posuere nulla nunc, ut condimentum turpis imperdiet sit amet.

- \ No newline at end of file + + + + + + + + + + + + + + + News Post 4 | TailBliss + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +

+ News Post 4 +

+
+
+
+
+ + + + + + + + + +
+
+ +
+

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

+

Vestibulum vel convallis felis. Ut finibus lorem vestibulum lobortis rhoncus. Sed mi tellus, volutpat aliquam enim sed, efficitur cursus lacus. Nunc congue, justo luctus vehicula finibus, tortor justo consectetur ligula, at lobortis nisl ipsum eu mauris. Fusce finibus mi in enim mollis dapibus. In non leo et mi pharetra vehicula vel ut felis. Nam eros metus, tristique a tellus vitae, aliquet posuere turpis. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Pellentesque non molestie orci, id scelerisque odio. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Suspendisse pharetra rhoncus massa, eu sagittis purus consectetur eget.

+

Duis vitae consectetur dolor. Sed consectetur nibh ligula, vitae eleifend velit vulputate non. Nam eleifend, tellus ut commodo hendrerit, leo erat dictum est, non faucibus sapien mauris eu sapien. Sed et tortor sit amet ex rhoncus sagittis. Vestibulum pretium nisl non sodales congue. Ut sit amet iaculis felis. Nulla tristique tristique posuere.

+

Sed neque ex, euismod vel leo vitae, ornare elementum neque. Ut laoreet metus nec ex euismod mattis. Vivamus dapibus suscipit risus nec gravida. Mauris est odio, maximus eget sem eu, rhoncus tincidunt ipsum. Proin laoreet maximus dolor, in euismod purus suscipit et. Praesent eleifend mi sed massa pulvinar dictum. Curabitur leo lorem, pharetra sit amet orci in, maximus cursus purus. Integer finibus massa tincidunt orci gravida mattis. Praesent nec orci libero. Suspendisse vel magna posuere libero ultricies lacinia.

+

Pellentesque at feugiat arcu, at tincidunt est. Sed vel urna congue, porta dui sed, lacinia velit. Nulla porta vehicula sem, id porta sem suscipit id. Ut faucibus erat ac odio tempus molestie at a nisi. Pellentesque id ornare ipsum, a vestibulum nisi. Nullam id felis nec dolor tincidunt viverra quis ac tortor. Maecenas id viverra tellus, eu egestas tellus. Integer feugiat et arcu sit amet venenatis. Nam posuere mi quis justo rhoncus, nec cursus quam venenatis. Duis sapien ante, egestas sit amet nulla sit amet, facilisis lobortis lectus. Nullam non arcu pretium, pretium ligula in, sagittis nibh. Aenean egestas eget ipsum tempus feugiat.

+

Aliquam tortor erat, elementum a neque et, ultricies mollis nunc. Etiam bibendum eu magna ut commodo. Curabitur gravida lorem nec ultrices blandit. Nam egestas est a purus porttitor cursus. Suspendisse dapibus scelerisque odio facilisis porta. Curabitur urna felis, vehicula eget aliquam ut, elementum ac est. Vestibulum posuere nulla nunc, ut condimentum turpis imperdiet sit amet.

+
+
+ + + + + + + + + + \ No newline at end of file diff --git a/public/posts/news-post-5/index.html b/public/posts/news-post-5/index.html index b13c491..a8b7475 100644 --- a/public/posts/news-post-5/index.html +++ b/public/posts/news-post-5/index.html @@ -1,14 +1,322 @@ -News Post 5 | TailBliss

News Post 5

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Vestibulum vel convallis felis. Ut finibus lorem vestibulum lobortis rhoncus. Sed mi tellus, volutpat aliquam enim sed, efficitur cursus lacus. Nunc congue, justo luctus vehicula finibus, tortor justo consectetur ligula, at lobortis nisl ipsum eu mauris. Fusce finibus mi in enim mollis dapibus. In non leo et mi pharetra vehicula vel ut felis. Nam eros metus, tristique a tellus vitae, aliquet posuere turpis. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Pellentesque non molestie orci, id scelerisque odio. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Suspendisse pharetra rhoncus massa, eu sagittis purus consectetur eget.

Duis vitae consectetur dolor. Sed consectetur nibh ligula, vitae eleifend velit vulputate non. Nam eleifend, tellus ut commodo hendrerit, leo erat dictum est, non faucibus sapien mauris eu sapien. Sed et tortor sit amet ex rhoncus sagittis. Vestibulum pretium nisl non sodales congue. Ut sit amet iaculis felis. Nulla tristique tristique posuere.

Sed neque ex, euismod vel leo vitae, ornare elementum neque. Ut laoreet metus nec ex euismod mattis. Vivamus dapibus suscipit risus nec gravida. Mauris est odio, maximus eget sem eu, rhoncus tincidunt ipsum. Proin laoreet maximus dolor, in euismod purus suscipit et. Praesent eleifend mi sed massa pulvinar dictum. Curabitur leo lorem, pharetra sit amet orci in, maximus cursus purus. Integer finibus massa tincidunt orci gravida mattis. Praesent nec orci libero. Suspendisse vel magna posuere libero ultricies lacinia.

Pellentesque at feugiat arcu, at tincidunt est. Sed vel urna congue, porta dui sed, lacinia velit. Nulla porta vehicula sem, id porta sem suscipit id. Ut faucibus erat ac odio tempus molestie at a nisi. Pellentesque id ornare ipsum, a vestibulum nisi. Nullam id felis nec dolor tincidunt viverra quis ac tortor. Maecenas id viverra tellus, eu egestas tellus. Integer feugiat et arcu sit amet venenatis. Nam posuere mi quis justo rhoncus, nec cursus quam venenatis. Duis sapien ante, egestas sit amet nulla sit amet, facilisis lobortis lectus. Nullam non arcu pretium, pretium ligula in, sagittis nibh. Aenean egestas eget ipsum tempus feugiat.

Aliquam tortor erat, elementum a neque et, ultricies mollis nunc. Etiam bibendum eu magna ut commodo. Curabitur gravida lorem nec ultrices blandit. Nam egestas est a purus porttitor cursus. Suspendisse dapibus scelerisque odio facilisis porta. Curabitur urna felis, vehicula eget aliquam ut, elementum ac est. Vestibulum posuere nulla nunc, ut condimentum turpis imperdiet sit amet.

- \ No newline at end of file + + + + + + + + + + + + + + + News Post 5 | TailBliss + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +

+ News Post 5 +

+
+
+
+
+ + + + + + + + + +
+
+ +
+

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

+

Vestibulum vel convallis felis. Ut finibus lorem vestibulum lobortis rhoncus. Sed mi tellus, volutpat aliquam enim sed, efficitur cursus lacus. Nunc congue, justo luctus vehicula finibus, tortor justo consectetur ligula, at lobortis nisl ipsum eu mauris. Fusce finibus mi in enim mollis dapibus. In non leo et mi pharetra vehicula vel ut felis. Nam eros metus, tristique a tellus vitae, aliquet posuere turpis. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Pellentesque non molestie orci, id scelerisque odio. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Suspendisse pharetra rhoncus massa, eu sagittis purus consectetur eget.

+

Duis vitae consectetur dolor. Sed consectetur nibh ligula, vitae eleifend velit vulputate non. Nam eleifend, tellus ut commodo hendrerit, leo erat dictum est, non faucibus sapien mauris eu sapien. Sed et tortor sit amet ex rhoncus sagittis. Vestibulum pretium nisl non sodales congue. Ut sit amet iaculis felis. Nulla tristique tristique posuere.

+

Sed neque ex, euismod vel leo vitae, ornare elementum neque. Ut laoreet metus nec ex euismod mattis. Vivamus dapibus suscipit risus nec gravida. Mauris est odio, maximus eget sem eu, rhoncus tincidunt ipsum. Proin laoreet maximus dolor, in euismod purus suscipit et. Praesent eleifend mi sed massa pulvinar dictum. Curabitur leo lorem, pharetra sit amet orci in, maximus cursus purus. Integer finibus massa tincidunt orci gravida mattis. Praesent nec orci libero. Suspendisse vel magna posuere libero ultricies lacinia.

+

Pellentesque at feugiat arcu, at tincidunt est. Sed vel urna congue, porta dui sed, lacinia velit. Nulla porta vehicula sem, id porta sem suscipit id. Ut faucibus erat ac odio tempus molestie at a nisi. Pellentesque id ornare ipsum, a vestibulum nisi. Nullam id felis nec dolor tincidunt viverra quis ac tortor. Maecenas id viverra tellus, eu egestas tellus. Integer feugiat et arcu sit amet venenatis. Nam posuere mi quis justo rhoncus, nec cursus quam venenatis. Duis sapien ante, egestas sit amet nulla sit amet, facilisis lobortis lectus. Nullam non arcu pretium, pretium ligula in, sagittis nibh. Aenean egestas eget ipsum tempus feugiat.

+

Aliquam tortor erat, elementum a neque et, ultricies mollis nunc. Etiam bibendum eu magna ut commodo. Curabitur gravida lorem nec ultrices blandit. Nam egestas est a purus porttitor cursus. Suspendisse dapibus scelerisque odio facilisis porta. Curabitur urna felis, vehicula eget aliquam ut, elementum ac est. Vestibulum posuere nulla nunc, ut condimentum turpis imperdiet sit amet.

+
+
+ + + + + + + + + + \ No newline at end of file diff --git a/public/posts/news-post-6/index.html b/public/posts/news-post-6/index.html index a86fa3f..45463db 100644 --- a/public/posts/news-post-6/index.html +++ b/public/posts/news-post-6/index.html @@ -1,14 +1,322 @@ -News Post 6 | TailBliss

News Post 6

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Vestibulum vel convallis felis. Ut finibus lorem vestibulum lobortis rhoncus. Sed mi tellus, volutpat aliquam enim sed, efficitur cursus lacus. Nunc congue, justo luctus vehicula finibus, tortor justo consectetur ligula, at lobortis nisl ipsum eu mauris. Fusce finibus mi in enim mollis dapibus. In non leo et mi pharetra vehicula vel ut felis. Nam eros metus, tristique a tellus vitae, aliquet posuere turpis. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Pellentesque non molestie orci, id scelerisque odio. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Suspendisse pharetra rhoncus massa, eu sagittis purus consectetur eget.

Duis vitae consectetur dolor. Sed consectetur nibh ligula, vitae eleifend velit vulputate non. Nam eleifend, tellus ut commodo hendrerit, leo erat dictum est, non faucibus sapien mauris eu sapien. Sed et tortor sit amet ex rhoncus sagittis. Vestibulum pretium nisl non sodales congue. Ut sit amet iaculis felis. Nulla tristique tristique posuere.

Sed neque ex, euismod vel leo vitae, ornare elementum neque. Ut laoreet metus nec ex euismod mattis. Vivamus dapibus suscipit risus nec gravida. Mauris est odio, maximus eget sem eu, rhoncus tincidunt ipsum. Proin laoreet maximus dolor, in euismod purus suscipit et. Praesent eleifend mi sed massa pulvinar dictum. Curabitur leo lorem, pharetra sit amet orci in, maximus cursus purus. Integer finibus massa tincidunt orci gravida mattis. Praesent nec orci libero. Suspendisse vel magna posuere libero ultricies lacinia.

Pellentesque at feugiat arcu, at tincidunt est. Sed vel urna congue, porta dui sed, lacinia velit. Nulla porta vehicula sem, id porta sem suscipit id. Ut faucibus erat ac odio tempus molestie at a nisi. Pellentesque id ornare ipsum, a vestibulum nisi. Nullam id felis nec dolor tincidunt viverra quis ac tortor. Maecenas id viverra tellus, eu egestas tellus. Integer feugiat et arcu sit amet venenatis. Nam posuere mi quis justo rhoncus, nec cursus quam venenatis. Duis sapien ante, egestas sit amet nulla sit amet, facilisis lobortis lectus. Nullam non arcu pretium, pretium ligula in, sagittis nibh. Aenean egestas eget ipsum tempus feugiat.

Aliquam tortor erat, elementum a neque et, ultricies mollis nunc. Etiam bibendum eu magna ut commodo. Curabitur gravida lorem nec ultrices blandit. Nam egestas est a purus porttitor cursus. Suspendisse dapibus scelerisque odio facilisis porta. Curabitur urna felis, vehicula eget aliquam ut, elementum ac est. Vestibulum posuere nulla nunc, ut condimentum turpis imperdiet sit amet.

- \ No newline at end of file + + + + + + + + + + + + + + + News Post 6 | TailBliss + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ +

+ News Post 6 +

+
+
+
+
+ + + + + + + + + +
+
+ +
+

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

+

Vestibulum vel convallis felis. Ut finibus lorem vestibulum lobortis rhoncus. Sed mi tellus, volutpat aliquam enim sed, efficitur cursus lacus. Nunc congue, justo luctus vehicula finibus, tortor justo consectetur ligula, at lobortis nisl ipsum eu mauris. Fusce finibus mi in enim mollis dapibus. In non leo et mi pharetra vehicula vel ut felis. Nam eros metus, tristique a tellus vitae, aliquet posuere turpis. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Pellentesque non molestie orci, id scelerisque odio. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Suspendisse pharetra rhoncus massa, eu sagittis purus consectetur eget.

+

Duis vitae consectetur dolor. Sed consectetur nibh ligula, vitae eleifend velit vulputate non. Nam eleifend, tellus ut commodo hendrerit, leo erat dictum est, non faucibus sapien mauris eu sapien. Sed et tortor sit amet ex rhoncus sagittis. Vestibulum pretium nisl non sodales congue. Ut sit amet iaculis felis. Nulla tristique tristique posuere.

+

Sed neque ex, euismod vel leo vitae, ornare elementum neque. Ut laoreet metus nec ex euismod mattis. Vivamus dapibus suscipit risus nec gravida. Mauris est odio, maximus eget sem eu, rhoncus tincidunt ipsum. Proin laoreet maximus dolor, in euismod purus suscipit et. Praesent eleifend mi sed massa pulvinar dictum. Curabitur leo lorem, pharetra sit amet orci in, maximus cursus purus. Integer finibus massa tincidunt orci gravida mattis. Praesent nec orci libero. Suspendisse vel magna posuere libero ultricies lacinia.

+

Pellentesque at feugiat arcu, at tincidunt est. Sed vel urna congue, porta dui sed, lacinia velit. Nulla porta vehicula sem, id porta sem suscipit id. Ut faucibus erat ac odio tempus molestie at a nisi. Pellentesque id ornare ipsum, a vestibulum nisi. Nullam id felis nec dolor tincidunt viverra quis ac tortor. Maecenas id viverra tellus, eu egestas tellus. Integer feugiat et arcu sit amet venenatis. Nam posuere mi quis justo rhoncus, nec cursus quam venenatis. Duis sapien ante, egestas sit amet nulla sit amet, facilisis lobortis lectus. Nullam non arcu pretium, pretium ligula in, sagittis nibh. Aenean egestas eget ipsum tempus feugiat.

+

Aliquam tortor erat, elementum a neque et, ultricies mollis nunc. Etiam bibendum eu magna ut commodo. Curabitur gravida lorem nec ultrices blandit. Nam egestas est a purus porttitor cursus. Suspendisse dapibus scelerisque odio facilisis porta. Curabitur urna felis, vehicula eget aliquam ut, elementum ac est. Vestibulum posuere nulla nunc, ut condimentum turpis imperdiet sit amet.

+
+
+ + + + + + + + + + \ No newline at end of file diff --git a/public/posts/page/1/index.html b/public/posts/page/1/index.html index 450f70f..764c0b4 100644 --- a/public/posts/page/1/index.html +++ b/public/posts/page/1/index.html @@ -1 +1,10 @@ -https://tailbliss.vercel.app/posts/ \ No newline at end of file + + + + https://tailbliss.vercel.app/posts/ + + + + + + diff --git a/public/posts/page/2/index.html b/public/posts/page/2/index.html index 93576a8..53188ef 100644 --- a/public/posts/page/2/index.html +++ b/public/posts/page/2/index.html @@ -1,32 +1,497 @@ -Posts | TailBliss

Posts

Blog Post 5

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -Blog

TailBliss

- -2 min -read
Blog Post 6

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -Blog

TailBliss

- -2 min -read
News Post 3

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -News

TailBliss

- -2 min -read
- \ No newline at end of file + + + + + + + + + + + + + + + Posts | TailBliss + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ +

+ Posts +

+
+
+ +
+
+
+ +
+ + + + + + +
+
+ + Blog Post 5 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + Blog
+
+ +
+

+ TailBliss +

+
+ + + 2 min + read +
+
+
+
+
+ +
+ + + + + + +
+
+ + Blog Post 6 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + Blog
+
+ +
+

+ TailBliss +

+
+ + + 2 min + read +
+
+
+
+
+ +
+ + + + + + +
+
+ + News Post 3 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + News
+
+ +
+

+ TailBliss +

+
+ + + 2 min + read +
+
+
+
+
+ +
+
+
+
+
+ + + + + + +
+
+ + + + + + + + + + \ No newline at end of file diff --git a/public/prose/index.html b/public/prose/index.html index 84467f7..23389f8 100644 --- a/public/prose/index.html +++ b/public/prose/index.html @@ -1,15 +1,246 @@ -Prose | TailBliss

Prose

@tailwindcss/typography

View on GitHub!

Beautiful typographic defaults for HTML you don’t control.

The official Tailwind CSS Typography plugin provides a set of prose classes you can use to add beautiful typographic defaults to any vanilla HTML you don’t control, like HTML rendered from Markdown, or pulled from a CMS.

Tailwind CSS IntelliSense extension for Visual Studio Code

<article class="prose lg:prose-xl">
+
+
+
+
+    
+
+
+
+
+
+
+
+
+
+ Prose | TailBliss 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+    
+    
+
+
+ +

+ Prose +

+
+
+
+
+ + + + + + + + + +
+
+ +
+

@tailwindcss/typography

+

View on GitHub!

+

Beautiful typographic defaults for HTML you don’t control.

+

The official Tailwind CSS Typography plugin provides a set of prose classes you can use to add beautiful typographic defaults to any vanilla HTML you don’t control, like HTML rendered from Markdown, or pulled from a CMS.

+

Tailwind CSS IntelliSense extension for Visual Studio Code

+
<article class="prose lg:prose-xl">
   {{ markdown }}
 </article>
 

To see what it looks like in action, check out our live demo on Tailwind Play. -​

Installation

Install the plugin from npm:

npm install -D @tailwindcss/typography
-

Then add the plugin to your tailwind.config.js file: tailwind.config.js

module.exports = {
+​

+

Installation

+

Install the plugin from npm:

+
npm install -D @tailwindcss/typography
+

Then add the plugin to your tailwind.config.js file: tailwind.config.js

+
module.exports = {
   theme: {
     // ...
   },
@@ -18,7 +249,9 @@
     // ...
   ],
 }
-

Basic usage

Now you can use the prose classes to add sensible typography styles to any vanilla HTML:

<article class="prose lg:prose-xl">
+

Basic usage

+

Now you can use the prose classes to add sensible typography styles to any vanilla HTML:

+
<article class="prose lg:prose-xl">
   <h1>Garlic bread with cheese: What the science tells us</h1>
   <p>
     For years parents have espoused the health benefits of eating garlic bread with cheese to their
@@ -30,36 +263,235 @@
     springing up around the country.
   </p>
 </article>
-

Choosing a gray scale

This plugin includes a modifier class for each of the five gray scales Tailwind includes by default so you can easily style your content to match the grays you’re using in your project.

<article class="prose prose-slate">
+

Choosing a gray scale

+

This plugin includes a modifier class for each of the five gray scales Tailwind includes by default so you can easily style your content to match the grays you’re using in your project.

+
<article class="prose prose-slate">
   {{ markdown }}
 </article>
-

Here are the classes that are generated using a totally default Tailwind CSS v2.0 build:

ClassGray scale
prose-gray (default)Gray
prose-slateSlate
prose-zincZinc
prose-neutralNeutral
prose-stoneStone

Modifier classes are designed to be used with the multi-class modifier pattern and must be used in conjunction with the base prose class.

Always include the prose class when adding a gray scale modifier

<article class="prose prose-stone">
+

Here are the classes that are generated using a totally default Tailwind CSS v2.0 build:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ClassGray scale
prose-gray (default)Gray
prose-slateSlate
prose-zincZinc
prose-neutralNeutral
prose-stoneStone
+

Modifier classes are designed to be used with the multi-class modifier pattern and must be used in conjunction with the base prose class.

+

Always include the prose class when adding a gray scale modifier

+
<article class="prose prose-stone">
   {{ markdown }}
 </article>
 

To learn about creating your own color themes, read the adding custom color themes documentation. -​

Applying a type scale

Size modifiers allow you to adjust the overall size of your typography for different contexts.

<article class="prose prose-xl">
+​

+

Applying a type scale

+

Size modifiers allow you to adjust the overall size of your typography for different contexts.

+
<article class="prose prose-xl">
   {{ markdown }}
 </article>
-

Five different typography sizes are included out of the box:

Class Body font size

prose-smGray scale
prose-gray (default)0.875rem (14px)
prose-base (default)1rem (16px)
prose-lg1.125rem (18px)
prose-xl1.25rem (20px)
prose-2xl1.5rem (24px)

These can be used in combination with Tailwind’s breakpoint modifiers to change the overall font size of a piece of content at different viewport sizes:

<article class="prose md:prose-lg lg:prose-xl">
+

Five different typography sizes are included out of the box:

+

Class Body font size

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
prose-smGray scale
prose-gray (default)0.875rem (14px)
prose-base (default)1rem (16px)
prose-lg1.125rem (18px)
prose-xl1.25rem (20px)
prose-2xl1.5rem (24px)
+

These can be used in combination with Tailwind’s breakpoint modifiers to change the overall font size of a piece of content at different viewport sizes:

+
<article class="prose md:prose-lg lg:prose-xl">
   {{ markdown }}
 </article>
-

Everything about the provided size modifiers has been hand-tuned by professional designers to look as beautiful as possible, including the relationships between font sizes, heading spacing, code block padding, and more.

Size modifiers are designed to be used with the multi-class modifier pattern and must be used in conjunction with the base prose class.

Always include the prose class when adding a size modifier

<article class="prose prose-lg">
+

Everything about the provided size modifiers has been hand-tuned by professional designers to look as beautiful as possible, including the relationships between font sizes, heading spacing, code block padding, and more.

+

Size modifiers are designed to be used with the multi-class modifier pattern and must be used in conjunction with the base prose class.

+

Always include the prose class when adding a size modifier

+
<article class="prose prose-lg">
   {{ markdown }}
 </article>
-

To learn about customizing the included type scales, read the documentation on customizing the CSS.

Adapting to dark mode

Each default color theme includes a hand-designed dark mode version that you can trigger by adding the prose-invert class:

<article class="prose dark:prose-invert">
+

To learn about customizing the included type scales, read the documentation on customizing the CSS.

+

Adapting to dark mode

+

Each default color theme includes a hand-designed dark mode version that you can trigger by adding the prose-invert class:

+
<article class="prose dark:prose-invert">
   {{ markdown }}
 </article>
-

To learn about creating your own color themes, read the adding custom color themes documentation.

​ +

To learn about creating your own color themes, read the adding custom color themes documentation.

+

​ Element modifiers -Use element modifiers to customize the style of individual elements in your content directly in your HTML:

<article class="prose prose-img:rounded-xl prose-headings:underline prose-a:text-blue-600">
+Use element modifiers to customize the style of individual elements in your content directly in your HTML:

+
<article class="prose prose-img:rounded-xl prose-headings:underline prose-a:text-blue-600">
   {{ markdown }}
 </article>
-

This makes it easy to do things like style links to match your brand, add a border radius to images, and tons more.

Here’s a complete list of available element modifiers:

ModifierTarget
prose-headings:{utility}h1, h2, h3, h4, th
prose-lead:{utility}[class~=“lead”]
prose-h1:{utility}h1
prose-h2:{utility}h2
prose-h3:{utility}h3
prose-h4:{utility}h4
prose-p:{utility}p
prose-a:{utility}a
prose-blockquote:{utility}blockquote
prose-figure:{utility}figure
prose-figcaption:{utility}figcaption
prose-strong:{utility}strong
prose-em:{utility}em
prose-code:{utility}code
prose-pre:{utility}pre
prose-ol:{utility}ol
prose-ul:{utility}ul
prose-li:{utility}li
prose-table:{utility}table
prose-thead:{utility}thead
prose-tr:{utility}tr
prose-th:{utility}th
prose-td:{utility}td
prose-img:{utility}img
prose-video:{utility}video
prose-hr:{utility}hr

When stacking these modifiers with other modifiers like hover, you most likely want the other modifier to come first:

<article class="prose prose-a:text-blue-600 hover:prose-a:text-blue-500">
+

This makes it easy to do things like style links to match your brand, add a border radius to images, and tons more.

+

Here’s a complete list of available element modifiers:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ModifierTarget
prose-headings:{utility}h1, h2, h3, h4, th
prose-lead:{utility}[class~=“lead”]
prose-h1:{utility}h1
prose-h2:{utility}h2
prose-h3:{utility}h3
prose-h4:{utility}h4
prose-p:{utility}p
prose-a:{utility}a
prose-blockquote:{utility}blockquote
prose-figure:{utility}figure
prose-figcaption:{utility}figcaption
prose-strong:{utility}strong
prose-em:{utility}em
prose-code:{utility}code
prose-pre:{utility}pre
prose-ol:{utility}ol
prose-ul:{utility}ul
prose-li:{utility}li
prose-table:{utility}table
prose-thead:{utility}thead
prose-tr:{utility}tr
prose-th:{utility}th
prose-td:{utility}td
prose-img:{utility}img
prose-video:{utility}video
prose-hr:{utility}hr
+

When stacking these modifiers with other modifiers like hover, you most likely want the other modifier to come first:

+
<article class="prose prose-a:text-blue-600 hover:prose-a:text-blue-500">
   {{ markdown }}
 </article>
-

Read the Tailwind CSS documentation on ordering stacked modifiers to learn more.

​ +

Read the Tailwind CSS documentation on ordering stacked modifiers to learn more.

+

​ Overriding max-width -Each size modifier comes with a baked in max-width designed to keep the content as readable as possible. This isn’t always what you want though, and sometimes you’ll want the content to just fill the width of its container.

In those cases, all you need to do is add max-w-none to your content to override the embedded max-width:

<div class="grid grid-cols-4">
+Each size modifier comes with a baked in max-width designed to keep the content as readable as possible. This isn’t always what you want though, and sometimes you’ll want the content to just fill the width of its container.

+

In those cases, all you need to do is add max-w-none to your content to override the embedded max-width:

+
<div class="grid grid-cols-4">
   <div class="col-span-1">
     <!-- ... -->
   </div>
@@ -69,9 +501,11 @@ Each size modifier comes with a baked in max-width designed to keep the content
     </article>
   </div>
 </div>
-

Advanced topics

​ +

Advanced topics

+

​ Undoing typography styles -If you have a block of markup embedded in some content that shouldn’t inherit the prose styles, use the not-prose class to sandbox it:

<article class="prose">
+If you have a block of markup embedded in some content that shouldn’t inherit the prose styles, use the not-prose class to sandbox it:

+
<article class="prose">
   <h1>My Heading</h1>
   <p>...</p>
 
@@ -83,7 +517,10 @@ If you have a block of markup embedded in some content that shouldn’t inherit
   <!-- ... -->
 </article>
 

Note that you can’t nest new prose instances within a not-prose block at this time. -​

Adding custom color themes

You can create your own color theme by adding a new key in the typography section of your tailwind.config.js file and providing your colors under the css key:

tailwind.config.js
+​

+

Adding custom color themes

+

You can create your own color theme by adding a new key in the typography section of your tailwind.config.js file and providing your colors under the css key:

+
tailwind.config.js
 module.exports = {
   theme: {
     extend: {
@@ -133,7 +570,10 @@ module.exports = {
   ],
 }
 

See our internal style definitions for some more examples. -​

Changing the default class name

If you need to use a class name other than prose for any reason, you can do so using the className option when registering the plugin:

  tailwind.config.js
+​

+

Changing the default class name

+

If you need to use a class name other than prose for any reason, you can do so using the className option when registering the plugin:

+
  tailwind.config.js
   module.exports = {
     theme: {
       // ...
@@ -145,7 +585,8 @@ module.exports = {
     ]
     ...
   }
-

Now every instance of prose in the default class names will be replaced by your custom class name:

  <article class="wysiwyg wysiwyg-slate lg:wysiwyg-xl">
+

Now every instance of prose in the default class names will be replaced by your custom class name:

+
  <article class="wysiwyg wysiwyg-slate lg:wysiwyg-xl">
     <h1>My Heading</h1>
     <p>...</p>
 
@@ -156,7 +597,9 @@ module.exports = {
     <p>...</p>
     <!-- ... -->
   </article>
-

Customizing the CSS

If you want to customize the raw CSS generated by this plugin, add your overrides under the typography key in the theme section of your tailwind.config.js file:

  tailwind.config.js
+

Customizing the CSS

+

If you want to customize the raw CSS generated by this plugin, add your overrides under the typography key in the theme section of your tailwind.config.js file:

+
  tailwind.config.js
   module.exports = {
     theme: {
       extend: {
@@ -180,7 +623,8 @@ module.exports = {
       // ...
     ],
   }
-

Like with all theme customizations in Tailwind, you can also define the typography key as a function if you need access to the theme helper:

tailwind.config.js
+

Like with all theme customizations in Tailwind, you can also define the typography key as a function if you need access to the theme helper:

+
tailwind.config.js
 module.exports = {
   theme: {
     extend: {
@@ -200,11 +644,94 @@ module.exports = {
     // ...
   ],
 }
-

Customizations should be applied to a specific modifier like DEFAULT or xl, and must be added under the css property. Customizations are authored in the same CSS-in-JS syntax used to write Tailwind plugins.

See the default styles for this plugin for more in-depth examples of configuring each modifier.

- \ No newline at end of file +

Customizations should be applied to a specific modifier like DEFAULT or xl, and must be added under the css property. Customizations are authored in the same CSS-in-JS syntax used to write Tailwind plugins.

+

See the default styles for this plugin for more in-depth examples of configuring each modifier.

+ +
+
+ + + + + + + + + + \ No newline at end of file diff --git a/public/sitemap.xml b/public/sitemap.xml index 24c63e8..3f15835 100644 --- a/public/sitemap.xml +++ b/public/sitemap.xml @@ -1 +1,74 @@ -https://tailbliss.vercel.app/tags/blog/2022-10-30T15:34:06-05:00https://tailbliss.vercel.app/categories/blog/2022-10-30T15:34:06-05:00https://tailbliss.vercel.app/posts/blog-post-1/2022-10-30T15:34:06-05:00https://tailbliss.vercel.app/categories/2022-10-30T15:34:06-05:00https://tailbliss.vercel.app/posts/2022-10-30T15:34:06-05:00https://tailbliss.vercel.app/tags/2022-10-30T15:34:06-05:00https://tailbliss.vercel.app/2022-10-30T15:34:06-05:00https://tailbliss.vercel.app/tags/news/2022-10-30T15:34:06-05:00https://tailbliss.vercel.app/categories/news/2022-10-30T15:34:06-05:00https://tailbliss.vercel.app/posts/news-post-1/2022-10-30T15:34:06-05:00https://tailbliss.vercel.app/posts/news-post-2/2022-10-30T15:34:06-05:00https://tailbliss.vercel.app/posts/news-post-4/2022-10-30T15:34:06-05:00https://tailbliss.vercel.app/posts/news-post-5/2022-10-30T15:34:06-05:00https://tailbliss.vercel.app/posts/news-post-6/2022-10-30T15:34:06-05:00https://tailbliss.vercel.app/about/2022-10-30T15:34:06-05:00https://tailbliss.vercel.app/posts/blog-post-2/2022-10-30T15:34:06-05:00https://tailbliss.vercel.app/posts/blog-post-3/2022-10-30T15:34:06-05:00https://tailbliss.vercel.app/posts/blog-post-4/2022-10-30T15:34:06-05:00https://tailbliss.vercel.app/posts/blog-post-5/2022-10-30T15:34:06-05:00https://tailbliss.vercel.app/posts/blog-post-6/2022-10-30T15:34:06-05:00https://tailbliss.vercel.app/contact/2022-11-02T01:02:49-05:00https://tailbliss.vercel.app/posts/news-post-3/2022-10-30T15:34:06-05:00https://tailbliss.vercel.app/prose/2022-10-30T15:34:06-05:00 \ No newline at end of file + + + + https://tailbliss.vercel.app/tags/blog/ + 2022-10-30T15:34:06-05:00 + + https://tailbliss.vercel.app/categories/blog/ + 2022-10-30T15:34:06-05:00 + + https://tailbliss.vercel.app/posts/blog-post-1/ + 2022-10-30T15:34:06-05:00 + + https://tailbliss.vercel.app/categories/ + 2022-10-30T15:34:06-05:00 + + https://tailbliss.vercel.app/posts/ + 2022-10-30T15:34:06-05:00 + + https://tailbliss.vercel.app/tags/ + 2022-10-30T15:34:06-05:00 + + https://tailbliss.vercel.app/ + 2022-10-30T15:34:06-05:00 + + https://tailbliss.vercel.app/tags/news/ + 2022-10-30T15:34:06-05:00 + + https://tailbliss.vercel.app/categories/news/ + 2022-10-30T15:34:06-05:00 + + https://tailbliss.vercel.app/posts/news-post-1/ + 2022-10-30T15:34:06-05:00 + + https://tailbliss.vercel.app/posts/news-post-2/ + 2022-10-30T15:34:06-05:00 + + https://tailbliss.vercel.app/posts/news-post-4/ + 2022-10-30T15:34:06-05:00 + + https://tailbliss.vercel.app/posts/news-post-5/ + 2022-10-30T15:34:06-05:00 + + https://tailbliss.vercel.app/posts/news-post-6/ + 2022-10-30T15:34:06-05:00 + + https://tailbliss.vercel.app/about/ + 2022-10-30T15:34:06-05:00 + + https://tailbliss.vercel.app/posts/blog-post-2/ + 2022-10-30T15:34:06-05:00 + + https://tailbliss.vercel.app/posts/blog-post-3/ + 2022-10-30T15:34:06-05:00 + + https://tailbliss.vercel.app/posts/blog-post-4/ + 2022-10-30T15:34:06-05:00 + + https://tailbliss.vercel.app/posts/blog-post-5/ + 2022-10-30T15:34:06-05:00 + + https://tailbliss.vercel.app/posts/blog-post-6/ + 2022-10-30T15:34:06-05:00 + + https://tailbliss.vercel.app/contact/ + 2022-11-02T01:02:49-05:00 + + https://tailbliss.vercel.app/posts/news-post-3/ + 2022-10-30T15:34:06-05:00 + + https://tailbliss.vercel.app/prose/ + 2022-10-30T15:34:06-05:00 + + diff --git a/public/tags/blog/index.html b/public/tags/blog/index.html index f3e7eb8..41d99df 100644 --- a/public/tags/blog/index.html +++ b/public/tags/blog/index.html @@ -1,44 +1,606 @@ -Blog | TailBliss

Blog

Blog Post 1

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -Blog

TailBliss

- -2 min -read
Blog Post 2

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -Blog

TailBliss

- -2 min -read
Blog Post 3

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -Blog

TailBliss

- -2 min -read
Blog Post 4

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -Blog

TailBliss

- -2 min -read
Blog Post 5

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -Blog

TailBliss

- -2 min -read
Blog Post 6

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -Blog

TailBliss

- -2 min -read
- \ No newline at end of file + + + + + + + + + + + + + + + Blog | TailBliss + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ +

+ Blog +

+
+
+ +
+
+
+ +
+ + + + + + +
+
+ + Blog Post 1 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + Blog
+
+ +
+

+ TailBliss +

+
+ + + 2 min + read +
+
+
+
+
+ +
+ + + + + + +
+
+ + Blog Post 2 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + Blog
+
+ +
+

+ TailBliss +

+
+ + + 2 min + read +
+
+
+
+
+ +
+ + + + + + +
+
+ + Blog Post 3 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + Blog
+
+ +
+

+ TailBliss +

+
+ + + 2 min + read +
+
+
+
+
+ +
+ + + + + + +
+
+ + Blog Post 4 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + Blog
+
+ +
+

+ TailBliss +

+
+ + + 2 min + read +
+
+
+
+
+ +
+ + + + + + +
+
+ + Blog Post 5 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + Blog
+
+ +
+

+ TailBliss +

+
+ + + 2 min + read +
+
+
+
+
+ +
+ + + + + + +
+
+ + Blog Post 6 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + Blog
+
+ +
+

+ TailBliss +

+
+ + + 2 min + read +
+
+
+
+
+ +
+
+
+
+
+ + +
+
+ + + + + + + + + + \ No newline at end of file diff --git a/public/tags/blog/index.xml b/public/tags/blog/index.xml index 9ddce9e..8377785 100644 --- a/public/tags/blog/index.xml +++ b/public/tags/blog/index.xml @@ -1 +1,65 @@ -Blog on TailBlisshttps://tailbliss.vercel.app/tags/blog/Recent content in Blog on TailBlissHugo -- gohugo.ioen-usSat, 18 Jun 2022 11:10:36 +0800Blog Post 1https://tailbliss.vercel.app/posts/blog-post-1/Sat, 18 Jun 2022 11:10:36 +0800https://tailbliss.vercel.app/posts/blog-post-1/Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.Blog Post 2https://tailbliss.vercel.app/posts/blog-post-2/Sat, 18 Dec 2021 11:10:36 +0800https://tailbliss.vercel.app/posts/blog-post-2/Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.Blog Post 3https://tailbliss.vercel.app/posts/blog-post-3/Sat, 18 Dec 2021 11:10:36 +0800https://tailbliss.vercel.app/posts/blog-post-3/Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.Blog Post 4https://tailbliss.vercel.app/posts/blog-post-4/Sat, 18 Dec 2021 11:10:36 +0800https://tailbliss.vercel.app/posts/blog-post-4/Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.Blog Post 5https://tailbliss.vercel.app/posts/blog-post-5/Sat, 18 Dec 2021 11:10:36 +0800https://tailbliss.vercel.app/posts/blog-post-5/Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.Blog Post 6https://tailbliss.vercel.app/posts/blog-post-6/Sat, 18 Dec 2021 11:10:36 +0800https://tailbliss.vercel.app/posts/blog-post-6/Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. \ No newline at end of file + + + + Blog on TailBliss + https://tailbliss.vercel.app/tags/blog/ + Recent content in Blog on TailBliss + Hugo -- gohugo.io + en-us + Sat, 18 Jun 2022 11:10:36 +0800 + + Blog Post 1 + https://tailbliss.vercel.app/posts/blog-post-1/ + Sat, 18 Jun 2022 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/blog-post-1/ + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. + + + + Blog Post 2 + https://tailbliss.vercel.app/posts/blog-post-2/ + Sat, 18 Dec 2021 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/blog-post-2/ + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. + + + + Blog Post 3 + https://tailbliss.vercel.app/posts/blog-post-3/ + Sat, 18 Dec 2021 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/blog-post-3/ + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. + + + + Blog Post 4 + https://tailbliss.vercel.app/posts/blog-post-4/ + Sat, 18 Dec 2021 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/blog-post-4/ + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. + + + + Blog Post 5 + https://tailbliss.vercel.app/posts/blog-post-5/ + Sat, 18 Dec 2021 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/blog-post-5/ + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. + + + + Blog Post 6 + https://tailbliss.vercel.app/posts/blog-post-6/ + Sat, 18 Dec 2021 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/blog-post-6/ + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. + + + + diff --git a/public/tags/blog/page/1/index.html b/public/tags/blog/page/1/index.html index f8101b7..d5a1e67 100644 --- a/public/tags/blog/page/1/index.html +++ b/public/tags/blog/page/1/index.html @@ -1 +1,10 @@ -https://tailbliss.vercel.app/tags/blog/ \ No newline at end of file + + + + https://tailbliss.vercel.app/tags/blog/ + + + + + + diff --git a/public/tags/index.html b/public/tags/index.html index cac2086..975560c 100644 --- a/public/tags/index.html +++ b/public/tags/index.html @@ -1,20 +1,388 @@ -Tags | TailBliss

Tags

Tags:

- -0 min -read
Tags:

- -0 min -read
- \ No newline at end of file + + + + + + + + + + + + + + + Tags | TailBliss + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ +

+ Tags +

+
+
+ +
+
+
+ +
+ +
+
+ + Blog + +

+ +

+
+
+ Tags: +
+
+ +
+

+ +

+
+ + + 0 min + read +
+
+
+
+
+ +
+ +
+
+ + News + +

+ +

+
+
+ Tags: +
+
+ +
+

+ +

+
+ + + 0 min + read +
+
+
+
+
+ +
+
+
+
+
+ + +
+
+ + + + + + + + + + \ No newline at end of file diff --git a/public/tags/index.xml b/public/tags/index.xml index 40d6f3c..811cfc6 100644 --- a/public/tags/index.xml +++ b/public/tags/index.xml @@ -1 +1,29 @@ -Tags on TailBlisshttps://tailbliss.vercel.app/tags/Recent content in Tags on TailBlissHugo -- gohugo.ioen-usSat, 18 Jun 2022 11:10:36 +0800Bloghttps://tailbliss.vercel.app/tags/blog/Sat, 18 Jun 2022 11:10:36 +0800https://tailbliss.vercel.app/tags/blog/Newshttps://tailbliss.vercel.app/tags/news/Wed, 18 May 2022 11:10:36 +0800https://tailbliss.vercel.app/tags/news/ \ No newline at end of file + + + + Tags on TailBliss + https://tailbliss.vercel.app/tags/ + Recent content in Tags on TailBliss + Hugo -- gohugo.io + en-us + Sat, 18 Jun 2022 11:10:36 +0800 + + Blog + https://tailbliss.vercel.app/tags/blog/ + Sat, 18 Jun 2022 11:10:36 +0800 + + https://tailbliss.vercel.app/tags/blog/ + + + + + News + https://tailbliss.vercel.app/tags/news/ + Wed, 18 May 2022 11:10:36 +0800 + + https://tailbliss.vercel.app/tags/news/ + + + + + diff --git a/public/tags/news/index.html b/public/tags/news/index.html index 77974e4..a2f4f8b 100644 --- a/public/tags/news/index.html +++ b/public/tags/news/index.html @@ -1,44 +1,606 @@ -News | TailBliss

News

News Post 1

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -News

TailBliss

- -2 min -read
News Post 2

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -News

TailBliss

- -2 min -read
News Post 4

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -News

TailBliss

- -2 min -read
News Post 5

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -News

TailBliss

- -2 min -read
News Post 6

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -News

TailBliss

- -2 min -read
News Post 3

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.

Tags: -News

TailBliss

- -2 min -read
- \ No newline at end of file + + + + + + + + + + + + + + + News | TailBliss + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ +

+ News +

+
+
+ +
+
+
+ +
+ + + + + + +
+
+ + News Post 1 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + News
+
+ +
+

+ TailBliss +

+
+ + + 2 min + read +
+
+
+
+
+ +
+ + + + + + +
+
+ + News Post 2 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + News
+
+ +
+

+ TailBliss +

+
+ + + 2 min + read +
+
+
+
+
+ +
+ + + + + + +
+
+ + News Post 4 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + News
+
+ +
+

+ TailBliss +

+
+ + + 2 min + read +
+
+
+
+
+ +
+ + + + + + +
+
+ + News Post 5 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + News
+
+ +
+

+ TailBliss +

+
+ + + 2 min + read +
+
+
+
+
+ +
+ + + + + + +
+
+ + News Post 6 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + News
+
+ +
+

+ TailBliss +

+
+ + + 2 min + read +
+
+
+
+
+ +
+ + + + + + +
+
+ + News Post 3 + +

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. +

+
+
+ Tags: + News
+
+ +
+

+ TailBliss +

+
+ + + 2 min + read +
+
+
+
+
+ +
+
+
+
+
+ + +
+
+ + + + + + + + + + \ No newline at end of file diff --git a/public/tags/news/index.xml b/public/tags/news/index.xml index 1557437..b3248c9 100644 --- a/public/tags/news/index.xml +++ b/public/tags/news/index.xml @@ -1 +1,65 @@ -News on TailBlisshttps://tailbliss.vercel.app/tags/news/Recent content in News on TailBlissHugo -- gohugo.ioen-usWed, 18 May 2022 11:10:36 +0800News Post 1https://tailbliss.vercel.app/posts/news-post-1/Wed, 18 May 2022 11:10:36 +0800https://tailbliss.vercel.app/posts/news-post-1/Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.News Post 2https://tailbliss.vercel.app/posts/news-post-2/Mon, 18 Apr 2022 11:10:36 +0800https://tailbliss.vercel.app/posts/news-post-2/Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.News Post 4https://tailbliss.vercel.app/posts/news-post-4/Fri, 18 Mar 2022 11:10:36 +0800https://tailbliss.vercel.app/posts/news-post-4/<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.</p>News Post 5https://tailbliss.vercel.app/posts/news-post-5/Fri, 18 Mar 2022 11:10:36 +0800https://tailbliss.vercel.app/posts/news-post-5/<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.</p>News Post 6https://tailbliss.vercel.app/posts/news-post-6/Fri, 18 Mar 2022 11:10:36 +0800https://tailbliss.vercel.app/posts/news-post-6/<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.</p>News Post 3https://tailbliss.vercel.app/posts/news-post-3/Sat, 18 Dec 2021 11:10:36 +0800https://tailbliss.vercel.app/posts/news-post-3/Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. \ No newline at end of file + + + + News on TailBliss + https://tailbliss.vercel.app/tags/news/ + Recent content in News on TailBliss + Hugo -- gohugo.io + en-us + Wed, 18 May 2022 11:10:36 +0800 + + News Post 1 + https://tailbliss.vercel.app/posts/news-post-1/ + Wed, 18 May 2022 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/news-post-1/ + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. + + + + News Post 2 + https://tailbliss.vercel.app/posts/news-post-2/ + Mon, 18 Apr 2022 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/news-post-2/ + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. + + + + News Post 4 + https://tailbliss.vercel.app/posts/news-post-4/ + Fri, 18 Mar 2022 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/news-post-4/ + <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.</p> + + + + News Post 5 + https://tailbliss.vercel.app/posts/news-post-5/ + Fri, 18 Mar 2022 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/news-post-5/ + <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.</p> + + + + News Post 6 + https://tailbliss.vercel.app/posts/news-post-6/ + Fri, 18 Mar 2022 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/news-post-6/ + <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero.</p> + + + + News Post 3 + https://tailbliss.vercel.app/posts/news-post-3/ + Sat, 18 Dec 2021 11:10:36 +0800 + + https://tailbliss.vercel.app/posts/news-post-3/ + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus, odio nec venenatis lacinia, lacus lectus varius nisi, in tristique mi purus ut libero. + + + + diff --git a/public/tags/news/page/1/index.html b/public/tags/news/page/1/index.html index e0edd51..146e1ed 100644 --- a/public/tags/news/page/1/index.html +++ b/public/tags/news/page/1/index.html @@ -1 +1,10 @@ -https://tailbliss.vercel.app/tags/news/ \ No newline at end of file + + + + https://tailbliss.vercel.app/tags/news/ + + + + + + diff --git a/public/tags/page/1/index.html b/public/tags/page/1/index.html index b194f3e..eb0d006 100644 --- a/public/tags/page/1/index.html +++ b/public/tags/page/1/index.html @@ -1 +1,10 @@ -https://tailbliss.vercel.app/tags/ \ No newline at end of file + + + + https://tailbliss.vercel.app/tags/ + + + + + + diff --git a/yarn-error.log b/yarn-error.log new file mode 100644 index 0000000..ae061df --- /dev/null +++ b/yarn-error.log @@ -0,0 +1,1203 @@ +Arguments: + /home/elnusserino/.nvm/versions/node/v16.17.1/bin/node /home/elnusserino/.nvm/versions/node/v16.17.1/bin/yarn test + +PATH: + /home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:/home/elnusserino/.vscode-server/bin/d045a5eda657f4d7b676dedbfa7aab8207f8a075/bin/remote-cli:/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:/home/elnusserino/.nvm/versions/node/v16.17.1/bin:/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/usr/lib/wsl/lib:/mnt/c/Users/nusse/c/Program Files (x86)/Razer/ChromaBroadcast/bin:/mnt/c/Users/nusse/c/Program Files/Razer/ChromaBroadcast/bin:/mnt/c/Users/nusse/c/Program Files (x86)/Common Files/Intel/Shared Libraries/redist/intel64/compiler:/mnt/c/Users/nusse/c/Windows/system32:/mnt/c/Users/nusse/c/Windows:/mnt/c/Users/nusse/c/Windows/System32/Wbem:/mnt/c/Users/nusse/c/Windows/System32/WindowsPowerShell/v1.0/:/mnt/c/Users/nusse/c/Windows/System32/OpenSSH/:/mnt/c/Users/nusse/c/Program Files/dotnet/:/mnt/c/Users/nusse/c/Program Files (x86)/NVIDIA Corporation/PhysX/Common:/mnt/c/Users/nusse/c/Program Files/NVIDIA Corporation/NVIDIA NvDLISR:/mnt/c/Users/nusse/c/ProgramData/chocolatey/bin:/mnt/c/Users/nusse/c/HashiCorp/Vagrant/bin:/mnt/c/Users/nusse/c/Windows/system32/config/systemprofile/AppData/Local/Microsoft/WindowsApps:/mnt/c/Users/nusse/c/Users/nusse/AppData/Local/Microsoft/WindowsApps:/mnt/c/Users/nusse/c/Users/nusse/AppData/Local/Programs/Microsoft VS Code/bin:/home/elnusserino/.yarn/bin:/mnt/c/Program Files/Oracle/VirtualBox:/mnt/c/Program Files/Oracle/VirtualBox + +Yarn version: + 1.22.19 + +Node version: + 16.17.1 + +Platform: + linux x64 + +Trace: + SyntaxError: /home/elnusserino/sites/tailbliss/package.json: Unexpected token & in JSON at position 590 + at JSON.parse () + at /home/elnusserino/.nvm/versions/node/v16.17.1/lib/node_modules/yarn/lib/cli.js:1629:59 + at Generator.next () + at step (/home/elnusserino/.nvm/versions/node/v16.17.1/lib/node_modules/yarn/lib/cli.js:310:30) + at /home/elnusserino/.nvm/versions/node/v16.17.1/lib/node_modules/yarn/lib/cli.js:321:13 + +npm manifest: + { + "name": "TailBliss", + "version": "0.1.0", + "description": "Hugo + Alpine.js + TailwindCSS", + "main": "index.js", + "devDependencies": { + "@tailwindcss/typography": "^0.5.7", + "alpinejs": "^3.10.5", + "autoprefixer": "^10.4.12", + "concurrently": "^7.4.0", + "postcss": "^8.4.18", + "postcss-cli": "^10.0.0", + "tailwindcss": "^3.2.1" + }, + "scripts": { + "start": "concurrently npm:watch:*", + "watch:tw": "tailwindcss -i ./assets/css/main.css -o ./assets/css/style.css --watch", + "watch:hugo": "hugo server", + "build": "hugo --minify", + "test": "yarn" && "echo Build Successful!" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/nusserstudios/tailbliss.git" + }, + "keywords": [ + "hugo", + "tailwind", + "tailwindcss", + "alpinejs", + "minimal", + "responsive", + "light mode", + "dark mode", + "hugo blog", + "categories", + "tags" + ], + "author": "NusserStudios", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/nusserstudios/tailbliss/issues" + }, + "homepage": "https://github.com/nusserstudios/tailbliss", + "dependencies": { + "test": "^3.2.1" + } + } + +yarn manifest: + No manifest + +Lockfile: + # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. + # yarn lockfile v1 + + + "@nodelib/fs.scandir@2.1.5": + version "2.1.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== + dependencies: + "@nodelib/fs.stat" "2.0.5" + run-parallel "^1.1.9" + + "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== + + "@nodelib/fs.walk@^1.2.3": + version "1.2.8" + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== + dependencies: + "@nodelib/fs.scandir" "2.1.5" + fastq "^1.6.0" + + "@tailwindcss/typography@^0.5.7": + version "0.5.7" + resolved "https://registry.yarnpkg.com/@tailwindcss/typography/-/typography-0.5.7.tgz#e0b95bea787ee14c5a34a74fc824e6fe86ea8855" + integrity sha512-JTTSTrgZfp6Ki4svhPA4mkd9nmQ/j9EfE7SbHJ1cLtthKkpW2OxsFXzSmxbhYbEkfNIyAyhle5p4SYyKRbz/jg== + dependencies: + lodash.castarray "^4.4.0" + lodash.isplainobject "^4.0.6" + lodash.merge "^4.6.2" + postcss-selector-parser "6.0.10" + + "@vue/reactivity@~3.1.1": + version "3.1.5" + resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.1.5.tgz#dbec4d9557f7c8f25c2635db1e23a78a729eb991" + integrity sha512-1tdfLmNjWG6t/CsPldh+foumYFo3cpyCHgBYQ34ylaMsJ+SNHQ1kApMIa8jN+i593zQuaw3AdWH0nJTARzCFhg== + dependencies: + "@vue/shared" "3.1.5" + + "@vue/shared@3.1.5": + version "3.1.5" + resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.1.5.tgz#74ee3aad995d0a3996a6bb9533d4d280514ede03" + integrity sha512-oJ4F3TnvpXaQwZJNF3ZK+kLPHKarDmJjJ6jyzVNDKH9md1dptjC7lWR//jrGuLdek/U6iltWxqAnYOu8gCiOvA== + + acorn-node@^1.8.2: + version "1.8.2" + resolved "https://registry.yarnpkg.com/acorn-node/-/acorn-node-1.8.2.tgz#114c95d64539e53dede23de8b9d96df7c7ae2af8" + integrity sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A== + dependencies: + acorn "^7.0.0" + acorn-walk "^7.0.0" + xtend "^4.0.2" + + acorn-walk@^7.0.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" + integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== + + acorn@^7.0.0: + version "7.4.1" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" + integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== + + alpinejs@^3.10.5: + version "3.10.5" + resolved "https://registry.yarnpkg.com/alpinejs/-/alpinejs-3.10.5.tgz#59ca09ad42293cc8e0bbbdf4c7696fc22c6df700" + integrity sha512-qlvnal44Gof2XVfm/lef8fYpXKxR9fjdSki7aFB/9THyFvbsRKZ6lM5SjxXpIs7B0faJt7bgpK2K25gzrraXJw== + dependencies: + "@vue/reactivity" "~3.1.1" + + ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + + ansi-styles@^4.0.0, ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + + anymatch@~3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" + integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + + arg@^5.0.2: + version "5.0.2" + resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c" + integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg== + + autoprefixer@^10.4.12: + version "10.4.12" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.12.tgz#183f30bf0b0722af54ee5ef257f7d4320bb33129" + integrity sha512-WrCGV9/b97Pa+jtwf5UGaRjgQIg7OK3D06GnoYoZNcG1Xb8Gt3EfuKjlhh9i/VtT16g6PYjZ69jdJ2g8FxSC4Q== + dependencies: + browserslist "^4.21.4" + caniuse-lite "^1.0.30001407" + fraction.js "^4.2.0" + normalize-range "^0.1.2" + picocolors "^1.0.0" + postcss-value-parser "^4.2.0" + + binary-extensions@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== + + braces@^3.0.2, braces@~3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + + browserslist@^4.21.4: + version "4.21.4" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.4.tgz#e7496bbc67b9e39dd0f98565feccdcb0d4ff6987" + integrity sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw== + dependencies: + caniuse-lite "^1.0.30001400" + electron-to-chromium "^1.4.251" + node-releases "^2.0.6" + update-browserslist-db "^1.0.9" + + call-bind@^1.0.0, call-bind@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== + dependencies: + function-bind "^1.1.1" + get-intrinsic "^1.0.2" + + camelcase-css@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5" + integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== + + caniuse-lite@^1.0.30001400, caniuse-lite@^1.0.30001407: + version "1.0.30001422" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001422.tgz#f2d7c6202c49a8359e6e35add894d88ef93edba1" + integrity sha512-hSesn02u1QacQHhaxl/kNMZwqVG35Sz/8DgvmgedxSH8z9UUpcDYSPYgsj3x5dQNRcNp6BwpSfQfVzYUTm+fog== + + chalk@^4.1.0: + version "4.1.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + + chokidar@^3.3.0, chokidar@^3.5.3: + version "3.5.3" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" + integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== + dependencies: + anymatch "~3.1.2" + braces "~3.0.2" + glob-parent "~5.1.2" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.6.0" + optionalDependencies: + fsevents "~2.3.2" + + cliui@^8.0.1: + version "8.0.1" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa" + integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.1" + wrap-ansi "^7.0.0" + + color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + + color-name@^1.1.4, color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + + concurrently@^7.4.0: + version "7.4.0" + resolved "https://registry.yarnpkg.com/concurrently/-/concurrently-7.4.0.tgz#bb0e344964bc172673577c420db21e963f2f7368" + integrity sha512-M6AfrueDt/GEna/Vg9BqQ+93yuvzkSKmoTixnwEJkH0LlcGrRC2eCmjeG1tLLHIYfpYJABokqSGyMcXjm96AFA== + dependencies: + chalk "^4.1.0" + date-fns "^2.29.1" + lodash "^4.17.21" + rxjs "^7.0.0" + shell-quote "^1.7.3" + spawn-command "^0.0.2-1" + supports-color "^8.1.0" + tree-kill "^1.2.2" + yargs "^17.3.1" + + cssesc@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" + integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== + + date-fns@^2.29.1: + version "2.29.3" + resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.29.3.tgz#27402d2fc67eb442b511b70bbdf98e6411cd68a8" + integrity sha512-dDCnyH2WnnKusqvZZ6+jA1O51Ibt8ZMRNkDZdyAyK4YfbDwa/cEmuztzG5pk6hqlp9aSBPYcjOlktquahGwGeA== + + define-properties@^1.1.3, define-properties@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1" + integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA== + dependencies: + has-property-descriptors "^1.0.0" + object-keys "^1.1.1" + + defined@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.1.tgz#c0b9db27bfaffd95d6f61399419b893df0f91ebf" + integrity sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q== + + dependency-graph@^0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/dependency-graph/-/dependency-graph-0.11.0.tgz#ac0ce7ed68a54da22165a85e97a01d53f5eb2e27" + integrity sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg== + + detective@^5.2.1: + version "5.2.1" + resolved "https://registry.yarnpkg.com/detective/-/detective-5.2.1.tgz#6af01eeda11015acb0e73f933242b70f24f91034" + integrity sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw== + dependencies: + acorn-node "^1.8.2" + defined "^1.0.0" + minimist "^1.2.6" + + didyoumean@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/didyoumean/-/didyoumean-1.2.2.tgz#989346ffe9e839b4555ecf5666edea0d3e8ad037" + integrity sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw== + + dir-glob@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" + integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== + dependencies: + path-type "^4.0.0" + + dlv@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/dlv/-/dlv-1.1.3.tgz#5c198a8a11453596e751494d49874bc7732f2e79" + integrity sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA== + + electron-to-chromium@^1.4.251: + version "1.4.284" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz#61046d1e4cab3a25238f6bf7413795270f125592" + integrity sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA== + + emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + + es-abstract@^1.19.0, es-abstract@^1.19.1, es-abstract@^1.19.5: + version "1.20.4" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.20.4.tgz#1d103f9f8d78d4cf0713edcd6d0ed1a46eed5861" + integrity sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA== + dependencies: + call-bind "^1.0.2" + es-to-primitive "^1.2.1" + function-bind "^1.1.1" + function.prototype.name "^1.1.5" + get-intrinsic "^1.1.3" + get-symbol-description "^1.0.0" + has "^1.0.3" + has-property-descriptors "^1.0.0" + has-symbols "^1.0.3" + internal-slot "^1.0.3" + is-callable "^1.2.7" + is-negative-zero "^2.0.2" + is-regex "^1.1.4" + is-shared-array-buffer "^1.0.2" + is-string "^1.0.7" + is-weakref "^1.0.2" + object-inspect "^1.12.2" + object-keys "^1.1.1" + object.assign "^4.1.4" + regexp.prototype.flags "^1.4.3" + safe-regex-test "^1.0.0" + string.prototype.trimend "^1.0.5" + string.prototype.trimstart "^1.0.5" + unbox-primitive "^1.0.2" + + es-to-primitive@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" + integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== + dependencies: + is-callable "^1.1.4" + is-date-object "^1.0.1" + is-symbol "^1.0.2" + + escalade@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" + integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + + fast-glob@^3.2.11, fast-glob@^3.2.12: + version "3.2.12" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" + integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== + dependencies: + "@nodelib/fs.stat" "^2.0.2" + "@nodelib/fs.walk" "^1.2.3" + glob-parent "^5.1.2" + merge2 "^1.3.0" + micromatch "^4.0.4" + + fastq@^1.6.0: + version "1.13.0" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c" + integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw== + dependencies: + reusify "^1.0.4" + + fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + + fraction.js@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.2.0.tgz#448e5109a313a3527f5a3ab2119ec4cf0e0e2950" + integrity sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA== + + fs-extra@^10.0.0: + version "10.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz#02873cfbc4084dde127eaa5f9905eef2325d1abf" + integrity sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + + fsevents@~2.3.2: + version "2.3.2" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" + integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + + function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + + function.prototype.name@^1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" + integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.19.0" + functions-have-names "^1.2.2" + + functions-have-names@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" + integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== + + get-caller-file@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== + + get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385" + integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A== + dependencies: + function-bind "^1.1.1" + has "^1.0.3" + has-symbols "^1.0.3" + + get-stdin@^9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-9.0.0.tgz#3983ff82e03d56f1b2ea0d3e60325f39d703a575" + integrity sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA== + + get-symbol-description@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" + integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.1" + + glob-parent@^5.1.2, glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + + glob-parent@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" + integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== + dependencies: + is-glob "^4.0.3" + + globby@^13.0.0: + version "13.1.2" + resolved "https://registry.yarnpkg.com/globby/-/globby-13.1.2.tgz#29047105582427ab6eca4f905200667b056da515" + integrity sha512-LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ== + dependencies: + dir-glob "^3.0.1" + fast-glob "^3.2.11" + ignore "^5.2.0" + merge2 "^1.4.1" + slash "^4.0.0" + + graceful-fs@^4.1.6, graceful-fs@^4.2.0: + version "4.2.10" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" + integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== + + has-bigints@^1.0.1, has-bigints@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" + integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== + + has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + + has-property-descriptors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" + integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== + dependencies: + get-intrinsic "^1.1.1" + + has-symbols@^1.0.2, has-symbols@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + + has-tostringtag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" + integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== + dependencies: + has-symbols "^1.0.2" + + has@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + + ignore@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a" + integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== + + internal-slot@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" + integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== + dependencies: + get-intrinsic "^1.1.0" + has "^1.0.3" + side-channel "^1.0.4" + + is-bigint@^1.0.1: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" + integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== + dependencies: + has-bigints "^1.0.1" + + is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + + is-boolean-object@^1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" + integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + + is-callable@^1.1.4, is-callable@^1.2.7: + version "1.2.7" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" + integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== + + is-core-module@^2.9.0: + version "2.11.0" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.11.0.tgz#ad4cb3e3863e814523c96f3f58d26cc570ff0144" + integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw== + dependencies: + has "^1.0.3" + + is-date-object@^1.0.1: + version "1.0.5" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" + integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== + dependencies: + has-tostringtag "^1.0.0" + + is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + + is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + + is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: + version "4.0.3" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + + is-negative-zero@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" + integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== + + is-number-object@^1.0.4: + version "1.0.7" + resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" + integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== + dependencies: + has-tostringtag "^1.0.0" + + is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + + is-regex@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" + integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + + is-shared-array-buffer@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" + integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== + dependencies: + call-bind "^1.0.2" + + is-string@^1.0.5, is-string@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" + integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== + dependencies: + has-tostringtag "^1.0.0" + + is-symbol@^1.0.2, is-symbol@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" + integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== + dependencies: + has-symbols "^1.0.2" + + is-weakref@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" + integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== + dependencies: + call-bind "^1.0.2" + + jsonfile@^6.0.1: + version "6.1.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" + integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== + dependencies: + universalify "^2.0.0" + optionalDependencies: + graceful-fs "^4.1.6" + + lilconfig@^2.0.5, lilconfig@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.0.6.tgz#32a384558bd58af3d4c6e077dd1ad1d397bc69d4" + integrity sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg== + + lodash.castarray@^4.4.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/lodash.castarray/-/lodash.castarray-4.4.0.tgz#c02513515e309daddd4c24c60cfddcf5976d9115" + integrity sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q== + + lodash.isplainobject@^4.0.6: + version "4.0.6" + resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb" + integrity sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA== + + lodash.merge@^4.6.2: + version "4.6.2" + resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" + integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== + + lodash@^4.17.21: + version "4.17.21" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + + merge2@^1.3.0, merge2@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== + + micromatch@^4.0.4, micromatch@^4.0.5: + version "4.0.5" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" + integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== + dependencies: + braces "^3.0.2" + picomatch "^2.3.1" + + minimist@^1.2.6: + version "1.2.7" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18" + integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g== + + nanoid@^3.3.4: + version "3.3.4" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab" + integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw== + + node-releases@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.6.tgz#8a7088c63a55e493845683ebf3c828d8c51c5503" + integrity sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg== + + normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + + normalize-range@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" + integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== + + object-hash@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-3.0.0.tgz#73f97f753e7baffc0e2cc9d6e079079744ac82e9" + integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw== + + object-inspect@^1.12.2, object-inspect@^1.9.0: + version "1.12.2" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea" + integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ== + + object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + + object.assign@^4.1.4: + version "4.1.4" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" + integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + has-symbols "^1.0.3" + object-keys "^1.1.1" + + path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + + path-type@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" + integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== + + picocolors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" + integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== + + picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + + pify@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" + integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== + + postcss-cli@^10.0.0: + version "10.0.0" + resolved "https://registry.yarnpkg.com/postcss-cli/-/postcss-cli-10.0.0.tgz#404e468d1ff39fb5ead3f707e2021be7cd3f8c9f" + integrity sha512-Wjy/00wBBEgQqnSToznxLWDnATznokFGXsHtF/3G8glRZpz5KYlfHcBW/VMJmWAeF2x49zjgy4izjM3/Wx1dKA== + dependencies: + chokidar "^3.3.0" + dependency-graph "^0.11.0" + fs-extra "^10.0.0" + get-stdin "^9.0.0" + globby "^13.0.0" + picocolors "^1.0.0" + postcss-load-config "^4.0.0" + postcss-reporter "^7.0.0" + pretty-hrtime "^1.0.3" + read-cache "^1.0.0" + slash "^4.0.0" + yargs "^17.0.0" + + postcss-import@^14.1.0: + version "14.1.0" + resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-14.1.0.tgz#a7333ffe32f0b8795303ee9e40215dac922781f0" + integrity sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw== + dependencies: + postcss-value-parser "^4.0.0" + read-cache "^1.0.0" + resolve "^1.1.7" + + postcss-js@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-4.0.0.tgz#31db79889531b80dc7bc9b0ad283e418dce0ac00" + integrity sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ== + dependencies: + camelcase-css "^2.0.1" + + postcss-load-config@^3.1.4: + version "3.1.4" + resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-3.1.4.tgz#1ab2571faf84bb078877e1d07905eabe9ebda855" + integrity sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg== + dependencies: + lilconfig "^2.0.5" + yaml "^1.10.2" + + postcss-load-config@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-4.0.1.tgz#152383f481c2758274404e4962743191d73875bd" + integrity sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA== + dependencies: + lilconfig "^2.0.5" + yaml "^2.1.1" + + postcss-nested@6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-6.0.0.tgz#1572f1984736578f360cffc7eb7dca69e30d1735" + integrity sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w== + dependencies: + postcss-selector-parser "^6.0.10" + + postcss-reporter@^7.0.0: + version "7.0.5" + resolved "https://registry.yarnpkg.com/postcss-reporter/-/postcss-reporter-7.0.5.tgz#e55bd0fdf8d17e4f25fb55e9143fcd79349a2ceb" + integrity sha512-glWg7VZBilooZGOFPhN9msJ3FQs19Hie7l5a/eE6WglzYqVeH3ong3ShFcp9kDWJT1g2Y/wd59cocf9XxBtkWA== + dependencies: + picocolors "^1.0.0" + thenby "^1.3.4" + + postcss-selector-parser@6.0.10, postcss-selector-parser@^6.0.10: + version "6.0.10" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz#79b61e2c0d1bfc2602d549e11d0876256f8df88d" + integrity sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w== + dependencies: + cssesc "^3.0.0" + util-deprecate "^1.0.2" + + postcss-value-parser@^4.0.0, postcss-value-parser@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" + integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== + + postcss@^8.4.17, postcss@^8.4.18: + version "8.4.18" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.18.tgz#6d50046ea7d3d66a85e0e782074e7203bc7fbca2" + integrity sha512-Wi8mWhncLJm11GATDaQKobXSNEYGUHeQLiQqDFG1qQ5UTDPTEvKw0Xt5NsTpktGTwLps3ByrWsBrG0rB8YQ9oA== + dependencies: + nanoid "^3.3.4" + picocolors "^1.0.0" + source-map-js "^1.0.2" + + pretty-hrtime@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" + integrity sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A== + + queue-microtask@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== + + quick-lru@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932" + integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA== + + read-cache@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774" + integrity sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA== + dependencies: + pify "^2.3.0" + + readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + dependencies: + picomatch "^2.2.1" + + regexp.prototype.flags@^1.4.3: + version "1.4.3" + resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac" + integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + functions-have-names "^1.2.2" + + require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== + + resolve@^1.1.7, resolve@^1.22.1: + version "1.22.1" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" + integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== + dependencies: + is-core-module "^2.9.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + + reusify@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== + + run-parallel@^1.1.9: + version "1.2.0" + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== + dependencies: + queue-microtask "^1.2.2" + + rxjs@^7.0.0: + version "7.5.7" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.5.7.tgz#2ec0d57fdc89ece220d2e702730ae8f1e49def39" + integrity sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA== + dependencies: + tslib "^2.1.0" + + safe-regex-test@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295" + integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.3" + is-regex "^1.1.4" + + shell-quote@^1.7.3: + version "1.7.4" + resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.4.tgz#33fe15dee71ab2a81fcbd3a52106c5cfb9fb75d8" + integrity sha512-8o/QEhSSRb1a5i7TFR0iM4G16Z0vYB2OQVs4G3aAFXjn3T6yEx8AZxy1PgDF7I00LZHYA3WxaSYIf5e5sAX8Rw== + + side-channel@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" + integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== + dependencies: + call-bind "^1.0.0" + get-intrinsic "^1.0.2" + object-inspect "^1.9.0" + + slash@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-4.0.0.tgz#2422372176c4c6c5addb5e2ada885af984b396a7" + integrity sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew== + + source-map-js@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" + integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== + + spawn-command@^0.0.2-1: + version "0.0.2-1" + resolved "https://registry.yarnpkg.com/spawn-command/-/spawn-command-0.0.2-1.tgz#62f5e9466981c1b796dc5929937e11c9c6921bd0" + integrity sha512-n98l9E2RMSJ9ON1AKisHzz7V42VDiBQGY6PB1BwRglz99wpVsSuGzQ+jOi6lFXBGVTCrRpltvjm+/XA+tpeJrg== + + string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + + string.prototype.replaceall@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/string.prototype.replaceall/-/string.prototype.replaceall-1.0.6.tgz#566cba7c413713d0b1a85c5dba98b31f8db38196" + integrity sha512-OA8VDhE7ssNFlyoDXUHxw6V5cjgPrtosyJKqJX5i1P5tV9eUynsbhx1yz0g+Ye4fjFwAxhKLxt8GSRx2Aqc+Sw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.19.1" + get-intrinsic "^1.1.1" + has-symbols "^1.0.2" + is-regex "^1.1.4" + + string.prototype.trimend@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz#914a65baaab25fbdd4ee291ca7dde57e869cb8d0" + integrity sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.19.5" + + string.prototype.trimstart@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz#5466d93ba58cfa2134839f81d7f42437e8c01fef" + integrity sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.19.5" + + strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + + supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + + supports-color@^8.1.0: + version "8.1.1" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" + integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== + dependencies: + has-flag "^4.0.0" + + supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + + tailwindcss@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.2.1.tgz#1bd828fff3172489962357f8d531c184080a6786" + integrity sha512-Uw+GVSxp5CM48krnjHObqoOwlCt5Qo6nw1jlCRwfGy68dSYb/LwS9ZFidYGRiM+w6rMawkZiu1mEMAsHYAfoLg== + dependencies: + arg "^5.0.2" + chokidar "^3.5.3" + color-name "^1.1.4" + detective "^5.2.1" + didyoumean "^1.2.2" + dlv "^1.1.3" + fast-glob "^3.2.12" + glob-parent "^6.0.2" + is-glob "^4.0.3" + lilconfig "^2.0.6" + micromatch "^4.0.5" + normalize-path "^3.0.0" + object-hash "^3.0.0" + picocolors "^1.0.0" + postcss "^8.4.17" + postcss-import "^14.1.0" + postcss-js "^4.0.0" + postcss-load-config "^3.1.4" + postcss-nested "6.0.0" + postcss-selector-parser "^6.0.10" + postcss-value-parser "^4.2.0" + quick-lru "^5.1.1" + resolve "^1.22.1" + + test@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/test/-/test-3.2.1.tgz#8876adae35e86c4bccbcfdf5b018493b1c9501be" + integrity sha512-D9eN4OxdhyYS3xHSsAh5A0e+UhaOPxeREwBHTknZHoVFd4TqnPtkVrQ7lIUATPgpO9vvGg1D+TyMckVmUyaEig== + dependencies: + minimist "^1.2.6" + string.prototype.replaceall "^1.0.6" + + thenby@^1.3.4: + version "1.3.4" + resolved "https://registry.yarnpkg.com/thenby/-/thenby-1.3.4.tgz#81581f6e1bb324c6dedeae9bfc28e59b1a2201cc" + integrity sha512-89Gi5raiWA3QZ4b2ePcEwswC3me9JIg+ToSgtE0JWeCynLnLxNr/f9G+xfo9K+Oj4AFdom8YNJjibIARTJmapQ== + + to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + + tree-kill@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/tree-kill/-/tree-kill-1.2.2.tgz#4ca09a9092c88b73a7cdc5e8a01b507b0790a0cc" + integrity sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A== + + tslib@^2.1.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3" + integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== + + unbox-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" + integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== + dependencies: + call-bind "^1.0.2" + has-bigints "^1.0.2" + has-symbols "^1.0.3" + which-boxed-primitive "^1.0.2" + + universalify@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" + integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== + + update-browserslist-db@^1.0.9: + version "1.0.10" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz#0f54b876545726f17d00cd9a2561e6dade943ff3" + integrity sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ== + dependencies: + escalade "^3.1.1" + picocolors "^1.0.0" + + util-deprecate@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== + + which-boxed-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" + integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== + dependencies: + is-bigint "^1.0.1" + is-boolean-object "^1.1.0" + is-number-object "^1.0.4" + is-string "^1.0.5" + is-symbol "^1.0.3" + + wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + + xtend@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" + integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== + + y18n@^5.0.5: + version "5.0.8" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" + integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== + + yaml@^1.10.2: + version "1.10.2" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" + integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== + + yaml@^2.1.1: + version "2.1.3" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.1.3.tgz#9b3a4c8aff9821b696275c79a8bee8399d945207" + integrity sha512-AacA8nRULjKMX2DvWvOAdBZMOfQlypSFkjcOcu9FalllIDJ1kvlREzcdIZmidQUqqeMv7jorHjq2HlLv/+c2lg== + + yargs-parser@^21.0.0: + version "21.1.1" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" + integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== + + yargs@^17.0.0, yargs@^17.3.1: + version "17.6.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.6.0.tgz#e134900fc1f218bc230192bdec06a0a5f973e46c" + integrity sha512-8H/wTDqlSwoSnScvV2N/JHfLWOKuh5MVla9hqLjK3nsfyy6Y4kDSYSvkU5YCUEPOSnRXfIyx3Sq+B/IWudTo4g== + dependencies: + cliui "^8.0.1" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.3" + y18n "^5.0.5" + yargs-parser "^21.0.0"