blog post update

This commit is contained in:
carson 2020-05-13 18:22:35 -07:00
parent b64cf3d5bc
commit 5525c707c9
3 changed files with 17 additions and 7 deletions

View File

@ -6,9 +6,8 @@
## Launch TODOS
* Blog Post
* Move to development branch
* Publish 0.0.1
* Move to development branch
## Post-Launch TODOS

View File

@ -11,10 +11,10 @@ to [intercooler.js](http://intercoolerjs.org)!
Like intercooler, kutty brings the power of modern browsers into HTML.
#### What's new & different about kutty vs. intercooler?
#### What's new/different about kutty vs. intercooler?
* First and foremost, kutty has no external dependencies! No more dragging jQuery in if you don't want it.
* First and foremost, kutty has [*no external dependencies*](https://github.com/bigskysoftware/kutty/blob/master/package.json) !
No more dragging in jQuery just to do HTML-oriented web development.
* I've tried to follow conventional naming and behavior standards more closely where applicable (e.g. [`innerHTML`](/attributes/kt-swap) and [`outerHTML`](/attributes/kt-swap))
* Kutty is less kitchen-sink-of-features and more pluggable than intercooler
* Kutty has a better swapping mechanism which introduces a settling step, which allows for nice CSS transitions
@ -38,4 +38,15 @@ on moving that to kutty any time soon.
Depends a lot on how into the weeds you got with intercooler. The core attributes are pretty close to one another
but if you were using `ic-action` or event handlers extensively it will be a project. That's why I chose to rename it,
and to continue to maintain intercooler.
and to continue to maintain intercooler.
#### OK, so what should I do?
The usual:
* read the [docs](/docs)
* star the [repo](https://github.com/bigskysoftware/kutty)
* tell your friends
* & enjoy fully functional HTML, the way [Roy Fielding](https://en.wikipedia.org/wiki/Representational_State_Transfer) intended it
Cheers!

View File

@ -14,7 +14,7 @@ I'll be setting up a forum and
<div>
<ul>
{%- for post in collections.post -%}
<li><a href="{{ post.data.url }}">{{ post.data.title }}</a>🔥🔥</li>
<li><a href="{{ post.url }}">{{ post.data.title }}</a>🔥🔥</li>
{%- endfor -%}
</ul>
</div>