@anydigital/blades 0.28.0-alpha → 0.28.0-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -7
- package/_includes/blades/html.liquid +1 -1
- package/_includes/blades/html.njk +1 -1
- package/blades.gemspec +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,14 +1,11 @@
|
|
|
1
|
-
# 🥷 Blades
|
|
1
|
+
# 🥷 Blades <sup></sup>
|
|
2
2
|
|
|
3
|
-
<!--section:
|
|
3
|
+
<!--section:summary-->
|
|
4
4
|
|
|
5
|
-
<hgroup>Framework-agnostic,<wbr> class-light CSS<a href="https://blades.ninja/html/"><i>⁺</i></a> blade kit.</hgroup>
|
|
5
|
+
<hgroup>Framework-agnostic,<wbr> class-light CSS<a href="https://blades.ninja/html/" style="padding: 0"><i>⁺</i></a> blade kit.</hgroup>
|
|
6
6
|
|
|
7
7
|
<big>Use with Pico, Simple, Tailwind, or any other CSS reset/framework.</big>
|
|
8
8
|
|
|
9
|
-

|
|
10
|
-
[](https://github.com/anydigital/blades)
|
|
11
|
-
|
|
12
9
|
<!--section:gh-only-->
|
|
13
10
|
|
|
14
11
|
[](https://blades.ninja/)
|
|
@@ -89,8 +86,9 @@ Living example: https://github.com/anydigital/build-awesome-starter/blob/main/_s
|
|
|
89
86
|
- https://github.com/uhub/awesome-css
|
|
90
87
|
- 🕶️ [awesome-css-frameworks](https://github.com/gabrielizalo/Awesome-CSS-Frameworks-and-UI-Libraries/tree/master/Lightweight)
|
|
91
88
|
- 🕶️ [awesome-eleventy](https://github.com/anydigital/awesome-11ty-build-awesome)
|
|
92
|
-
- https://11tybundle.dev/showcase/
|
|
89
|
+
- [https://11tybundle.dev/](https://11tybundle.dev/showcase/)
|
|
93
90
|
- [https://jekyll-themes.com/](https://jekyll-themes.com/anydigital/blades)
|
|
91
|
+
- [https://sveltiacms.app/](https://sveltiacms.app/en/docs/start#starter-templates)
|
|
94
92
|
- https://github.com/anydigital/build-awesome-starter
|
|
95
93
|
- https://github.com/anydigital/bladeswitch starter
|
|
96
94
|
- Showcase:
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
{%- if title %}{{ title | strip_html | append: ' | ' }}{% endif -%}
|
|
10
10
|
{{- site.title -}}
|
|
11
11
|
</title>
|
|
12
|
-
<meta name="description" content="{{ summary }}">
|
|
12
|
+
<meta name="description" content="{{ summary | strip_html }}">
|
|
13
13
|
|
|
14
14
|
{%- for href in site.styles %}
|
|
15
15
|
<link rel="stylesheet" href="{{ href | relative_url }}">
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
{{- title | string | striptags ~ ' | ' if title -}}
|
|
10
10
|
{{- site.title -}}
|
|
11
11
|
</title>
|
|
12
|
-
<meta name="description" content="{{ summary }}" />
|
|
12
|
+
<meta name="description" content="{{ summary | striptags }}" />
|
|
13
13
|
|
|
14
14
|
{%- for href in site.styles %}
|
|
15
15
|
<link rel="stylesheet" href="{{ href }}" />
|
package/blades.gemspec
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |spec|
|
|
4
4
|
spec.name = "blades"
|
|
5
|
-
spec.version = "0.28.0-alpha"
|
|
5
|
+
spec.version = "0.28.0-alpha.2"
|
|
6
6
|
spec.authors = ["Anton Staroverov"]
|
|
7
7
|
|
|
8
8
|
spec.summary = "Framework-agnostic CSS utilities and single-file Liquid 'blades' for modern web development."
|
package/package.json
CHANGED