feat: initial commit
This commit is contained in:
commit
e214116e40
253 changed files with 17406 additions and 0 deletions
3
src/includes/blocks/banners/calendar.liquid
Normal file
3
src/includes/blocks/banners/calendar.liquid
Normal file
|
@ -0,0 +1,3 @@
|
|||
<div class="banner calendar">
|
||||
<p>{% tablericon "calendar" %} <a href="{{ url }}">{{ text }}</a>.</p>
|
||||
</div>
|
5
src/includes/blocks/banners/coffee.liquid
Normal file
5
src/includes/blocks/banners/coffee.liquid
Normal file
|
@ -0,0 +1,5 @@
|
|||
<div class="banner coffee">
|
||||
<p>
|
||||
{% tablericon "coffee" %} <a class="coffee" href="https://buymeacoffee.com/cory">If you found this post helpful, you can buy me a coffee.</a>
|
||||
</p>
|
||||
</div>
|
3
src/includes/blocks/banners/error.liquid
Normal file
3
src/includes/blocks/banners/error.liquid
Normal file
|
@ -0,0 +1,3 @@
|
|||
<div class="banner error">
|
||||
<p>{% tablericon "alert-circle" %} {{ text }}</p>
|
||||
</div>
|
3
src/includes/blocks/banners/github.liquid
Normal file
3
src/includes/blocks/banners/github.liquid
Normal file
|
@ -0,0 +1,3 @@
|
|||
<div class="banner github">
|
||||
<p>{% tablericon "brand-github" %} Take a look at <a href="{{ url }}">the GitHub repository for this project</a>. (Give it a star if you feel like it.)</p>
|
||||
</div>
|
8
src/includes/blocks/banners/mastodon.liquid
Normal file
8
src/includes/blocks/banners/mastodon.liquid
Normal file
|
@ -0,0 +1,8 @@
|
|||
{%- if url -%}
|
||||
<div class="banner mastodon">
|
||||
<p>
|
||||
{% tablericon "brand-mastodon" %}
|
||||
<a class="mastodon" href="{{ url }}"> Discuss this post on Mastodon. </a>
|
||||
</p>
|
||||
</div>
|
||||
{%- endif -%}
|
3
src/includes/blocks/banners/npm.liquid
Normal file
3
src/includes/blocks/banners/npm.liquid
Normal file
|
@ -0,0 +1,3 @@
|
|||
<div class="banner npm">
|
||||
<p>{% tablericon "brand-npm" %} <a href="{{ url }}">You can take a look at this package on NPM</a> or install it by running <code>{{ command }}</code>.</p>
|
||||
</div>
|
5
src/includes/blocks/banners/old-post.liquid
Normal file
5
src/includes/blocks/banners/old-post.liquid
Normal file
|
@ -0,0 +1,5 @@
|
|||
{%- if isOldPost -%}
|
||||
<div class="banner old-post">
|
||||
<p>{% tablericon "clock-x" %} This post is over 3 years old. I've probably changed my mind since it was written and it <em>could</em> be out of date.</p>
|
||||
</div>
|
||||
{%- endif -%}
|
3
src/includes/blocks/banners/rss.liquid
Normal file
3
src/includes/blocks/banners/rss.liquid
Normal file
|
@ -0,0 +1,3 @@
|
|||
<div class="banner rss">
|
||||
<p>{% tablericon "rss" %} <a href="{{ url }}">{{ text }}</a>.</p>
|
||||
</div>
|
3
src/includes/blocks/banners/warning.liquid
Normal file
3
src/includes/blocks/banners/warning.liquid
Normal file
|
@ -0,0 +1,3 @@
|
|||
<div class="banner warning">
|
||||
<p>{% tablericon "alert-triangle" %} {{ text }}</p>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue