diff --git a/_posts/blog/2019-08-09-ide-to.md b/_posts/blog/2019-08-09-ide-to.md
index c9510a5..45a48ac 100644
--- a/_posts/blog/2019-08-09-ide-to.md
+++ b/_posts/blog/2019-08-09-ide-to.md
@@ -4,8 +4,10 @@ title: Ide to ?
date: 2019-08-09T17:24:13.481Z
thumbnail: /images/uploads/screenshot.gif
rating: 4
+tags: ['dev']
---
-![Photo presentation of a responzIO device ](/images/uploads/responzio.png "responzIO device")
+
+![Photo presentation of a responzIO device ](/images/uploads/responzio.png 'responzIO device')
# Invenit vaporibus in educat visa Cererem dissimiles
diff --git a/_posts/blog/2019-11-03-anothert-one.md b/_posts/blog/2019-11-03-anothert-one.md
index e9005fa..a1a5147 100644
--- a/_posts/blog/2019-11-03-anothert-one.md
+++ b/_posts/blog/2019-11-03-anothert-one.md
@@ -4,7 +4,9 @@ title: Anothert one
date: 2019-11-03T11:01:32.621Z
thumbnail: /images/uploads/responzio.png
rating: 2
+tags: []
---
+
# Simul rursus animal Scythiae
## Latus saltibus et mihi
@@ -30,7 +32,7 @@ penitus quis.
Scis nervo properatus [sitis](http://www.infernas.io/continui-atque): quid,
venientique et felix ficta iactantem Echidnae humanae. Apollineos adspice, ut
est iam numquamque artus sanguis frondes coniugiique vibrantia taceam, ceu. In
-Hesperio tenet ara honorem *laude* partim deus, Stymphalides pressa quoniam mea
+Hesperio tenet ara honorem _laude_ partim deus, Stymphalides pressa quoniam mea
saligna vides, cortinaque. Opem inductas et ignes auras oppidaque calcataque
huius hic viribus luna pennis, sub ille altae Rhanisque.
diff --git a/email-signature.html b/email-signature.html
index 8dc1b72..08c6dde 100644
--- a/email-signature.html
+++ b/email-signature.html
@@ -1,6 +1,6 @@
First, you have to know what Svelte is. Svelte is a UI framework with a bold new idea: rather than providing a library that you write code with (like React or Vue, for example), it's a compiler that turns your components into highly optimized vanilla JavaScript. If you haven't already read the introductory blog post, you should!
-
-
Sapper is a Next.js-style framework (more on that here) built around Svelte. It makes it embarrassingly easy to create extremely high performance web apps. Out of the box, you get:
-
-
-
Code-splitting, dynamic imports and hot module replacement, powered by webpack
-
Server-side rendering (SSR) with client-side hydration
-
Service worker for offline support, and all the PWA bells and whistles
-
The nicest development experience you've ever had, or your money back
-
-
-
It's implemented as Express middleware. Everything is set up and waiting for you to get started, but you keep complete control over the server, service worker, webpack config and everything else, so it's as flexible as you need it to be.
- `
- },
-
- {
- title: 'How to use Sapper',
- slug: 'how-to-use-sapper',
- html: `
-
In war, the soldiers who build bridges, repair roads, clear minefields and conduct demolitions — all under combat conditions — are known as sappers.
-
-
For web developers, the stakes are generally lower than those for combat engineers. But we face our own hostile environment: underpowered devices, poor network connections, and the complexity inherent in front-end engineering. Sapper, which is short for Svelte app maker, is your courageous and dutiful ally.
- `
- },
-
- {
- title: 'How is Sapper different from Next.js?',
- slug: 'how-is-sapper-different-from-next',
- html: `
-
Next.js is a React framework from Zeit, and is the inspiration for Sapper. There are a few notable differences, however:
-
-
-
It's powered by Svelte instead of React, so it's faster and your apps are smaller
-
Instead of route masking, we encode route parameters in filenames. For example, the page you're looking at right now is src/routes/blog/[slug].html
-
As well as pages (Svelte components, which render on server or client), you can create server routes in your routes directory. These are just .js files that export functions corresponding to HTTP methods, and receive Express request and response objects as arguments. This makes it very easy to, for example, add a JSON API such as the one powering this very page
-
Links are just <a> elements, rather than framework-specific <Link> components. That means, for example, that this link right here, despite being inside a blob of HTML, works with the router as you'd expect.
-
- `
- },
-
- {
- title: 'How can I get involved?',
- slug: 'how-can-i-get-involved',
- html: `
-
We're so glad you asked! Come on over to the Svelte and Sapper repos, and join us in the Discord chatroom. Everyone is welcome, especially you!