diff --git a/assets/scss/main.scss b/assets/scss/main.scss index 55b49e8..747e078 100644 --- a/assets/scss/main.scss +++ b/assets/scss/main.scss @@ -10,7 +10,7 @@ $highlight: #c0d9f0; box-sizing: border-box; font-family: "Open Sans", sans-serif; font-size: 18px; - line-height: 1.5; + line-height: 2; color: $textColor; } @@ -77,6 +77,14 @@ hr { border-width: 0; } +blockquote { + margin: 40px 0 40px 40px; + padding: 10px 20px; + border-width: 0 0 0 2px; + border-style: solid; + border-color: $highlight; +} + nav { padding: 80px 40px; background: $highlight; @@ -181,3 +189,25 @@ footer { } } } + +.blog-entry { + margin-bottom: 0; + + p { + margin: 0; + color: $linkColor; + } + + h2 { + margin: 0; + } + + a { + color: $textColor; + font-size: 26px; + + &:hover { + color: $linkColor; + } + } +} diff --git a/content/blog.json b/content/blog.json index b3cb1ae..e7f870e 100644 --- a/content/blog.json +++ b/content/blog.json @@ -9,6 +9,87 @@ "content": [ {"ref": "head"}, {"ref": "nav"}, + { + "tpl": "text", + "data": { + "size": "h1" + }, + "copy": { + "en": { + "headline": "Blog" + } + } + }, + { + "tpl": "blog_entry", + "copy": { + "en": { + "date": "22. October 2020", + "headline": "My Experience With Vue 3 and Typescript So Far", + "link": "/blog/my-experience-with-vue-3-and-typescript-so-far-bZ1DQzJdjK" + } + } + }, + { + "tpl": "blog_entry", + "copy": { + "en": { + "date": "28. August 2020", + "headline": "Testing Database Transactions in Go", + "link": "/blog/testing-database-transactions-in-go-jEaOGXravM" + } + } + }, + { + "tpl": "blog_entry", + "copy": { + "en": { + "date": "7. July 2020", + "headline": "Wildcard SSL Certificates on Kubernetes Using ACME DNS", + "link": "/blog/wildcard-ssl-certificates-on-kubernetes-using-acme-dns-0odQzebaLO" + } + } + }, + { + "tpl": "blog_entry", + "copy": { + "en": { + "date": "7. July 2020", + "headline": "Golang: Transforming IDs to a User-Friendly Representation in Web Applications", + "link": "/blog/golang-transforming-ids-to-a-user-friendly-representation-in-web-applications-OxdzmRZ1Bl" + } + } + }, + { + "tpl": "blog_entry", + "copy": { + "en": { + "date": "3. July 2020", + "headline": "A Quick Update on Pirsch", + "link": "/blog/a-quick-update-on-pirsch-me1VJzz1Xy" + } + } + }, + { + "tpl": "blog_entry", + "copy": { + "en": { + "date": "22. June 2020", + "headline": "Server-Side Tracking Without Cookies In Go", + "link": "/blog/server-side-tracking-without-cookies-in-go-OxdzmGZ1Bl" + } + } + }, + { + "tpl": "blog_entry", + "copy": { + "en": { + "date": "14. June 2020", + "headline": "How I Built My Website Using Emvi as a Headless CMS", + "link": "/blog/how-i-built-my-website-using-emvi-as-a-headless-cms-RGaqOqK18w" + } + } + }, {"ref": "footer"}, {"ref": "end"} ] diff --git a/content/legal.json b/content/legal.json index 8dfe7ab..1c121e5 100644 --- a/content/legal.json +++ b/content/legal.json @@ -9,6 +9,35 @@ "content": [ {"ref": "head"}, {"ref": "nav"}, + { + "tpl": "text", + "data": { + "size": "h1" + }, + "copy": { + "en": { + "headline": "Legal" + } + } + }, + { + "tpl": "text", + "copy": { + "en": { + "headline": "According to §5 TMG", + "text": "

Marvin Blum
Schulbusch 29
33378 Rheda-Wiedenbrück, Germany
marvin@marvinblum.de

" + } + } + }, + { + "tpl": "text", + "copy": { + "en": { + "headline": "Cookie Policy", + "text": "

This page does not use cookies.

" + } + } + }, {"ref": "footer"}, {"ref": "end"} ] diff --git a/static/blog/golang-ids.md b/static/blog/golang-ids.md index be25179..005c900 100644 --- a/static/blog/golang-ids.md +++ b/static/blog/golang-ids.md @@ -2,7 +2,7 @@ > _This post was originally published on Medium a while ago. I just added it to my blog for completeness._ -![https://api.emvi.com/api/v1/content/AIVEMz3CkZoRI7wunlVp.png](https://marvinblum.de/static/blog/OxdzmRZ1Bl/AIVEMz3CkZoRI7wunlVp.png) +![Gopher](/static/blog/hideid/gopher.png) Most Golang web applications use persistency in some way or another. Usually, the connection between your application and the persistent layer is a technical identification value (ID), a number in most cases. IDs are useful to identify, connect and distinguish data records. Here is a typical example of a database model represented as a struct within Golang applications: @@ -185,17 +185,3 @@ type Customer struct { And that’s it! If you want to know more about how to implement this or just use it right away, you can visit the GitHub project, which implements all of the functionality I’ve shown above. It uses HashIds, which I’ve mentioned earlier, to transform the IDs to a nice and short hash representation. - -[ - -![](https://avatars0.githubusercontent.com/u/33937375?s=400&v=4) - -emvi/hide - -ID type with marshalling to/from hash to prevent sending IDs to clients. - emvi/hide - -https://github.com/emvi/hide - - - -](https://github.com/emvi/hide) diff --git a/static/blog/hideid/gopher.png b/static/blog/hideid/gopher.png new file mode 100644 index 0000000..b13d6c8 Binary files /dev/null and b/static/blog/hideid/gopher.png differ diff --git a/static/blog/server-side-tracking.md b/static/blog/server-side-tracking.md index 5b3f767..74416eb 100644 --- a/static/blog/server-side-tracking.md +++ b/static/blog/server-side-tracking.md @@ -20,14 +20,14 @@ Pirsch is German and refers to a special kind of hunt: _the hunter carefully an I found this quite fitting for a tracking library that cannot be blocked by the visitor. Even though it sounds a little sneaky. Here is the Gopher for it created by [Daniel](https://github.com/Motorschpocht). -![https://api.emvi.com/api/v1/content/0wV4YBIYaCm9JiteSaa3.svg](https://marvinblum.de/static/blog/OxdzmGZ1Bl/0wV4YBIYaCm9JiteSaa3.svg) +![Gopher](/static/blog/servertracking/gopher.svg) How Does It Work? ----------------- I will go over each step in more detail later, but here is a high-level overview of how Pirsch tracks visitors. -![https://api.emvi.com/api/v1/content/xaISIoTt8WAsFYWchuX8.svg](https://marvinblum.de/static/blog/OxdzmGZ1Bl/xaISIoTt8WAsFYWchuX8.svg) +![Network Flow](/static/blog/servertracking/network.svg) Once someone visits your website, the HTTP handler calls Pirsch to store a new hit and goes on with whatever it intends to do. Pirsch will do its best to filter out bots, calculate a fingerprint, and stores the page hit. You can analyze the data and generate statistics from it later. @@ -89,7 +89,7 @@ Pirsch provides an _Analyzer_ that can be used to extract some basic statistics: Most of these functions accept a filter to specify a time frame. The data can then be plotted like on my [tracking page](https://marvinblum.de/tracking). -![https://api.emvi.com/api/v1/content/QOeMcMKi8yS2p4WB2Xlu.png](https://marvinblum.de/static/blog/OxdzmGZ1Bl/QOeMcMKi8yS2p4WB2Xlu.png) +![Charts](/static/blog/servertracking/charts.png) To reduce the amount of data that needs to be processed the hits get aggregated each night and hits are cleaned up afterward. diff --git a/static/blog/servertracking/charts.png b/static/blog/servertracking/charts.png new file mode 100644 index 0000000..452b744 Binary files /dev/null and b/static/blog/servertracking/charts.png differ diff --git a/static/blog/servertracking/gopher.svg b/static/blog/servertracking/gopher.svg new file mode 100644 index 0000000..e93946d --- /dev/null +++ b/static/blog/servertracking/gopher.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/blog/servertracking/network.svg b/static/blog/servertracking/network.svg new file mode 100644 index 0000000..e7922a6 --- /dev/null +++ b/static/blog/servertracking/network.svg @@ -0,0 +1,102 @@ + + + + + background + + + + Layer 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/static/blog/vue3.md b/static/blog/vue3.md index 12a1d1d..569ca04 100644 --- a/static/blog/vue3.md +++ b/static/blog/vue3.md @@ -14,13 +14,13 @@ Setup The best way to set up a new Vue 3 project is by installing and using the [vue-cli](https://cli.vuejs.org/). -![https://api.emvi.com/api/v1/content/bFvNeJItGTLLFoTNjriJ.png](https://marvinblum.de/static/blog/bZ1DQzJdjK/bFvNeJItGTLLFoTNjriJ.png) +![Setup](/static/blog/vue3/setup.png) Run `vue create ` to set up a new project. This command will generate a new project inside the `test-app` directory and create the basic structure. Note that you will have to select Vue 3 and TypeScript from the `Manually select features` option at the beginning, as it is still marked as experimental. -![https://api.emvi.com/api/v1/content/7hjDa1NJXZ8nBUIhVq38.png](https://marvinblum.de/static/blog/bZ1DQzJdjK/7hjDa1NJXZ8nBUIhVq38.png) +![Structure](/static/blog/vue3/structure.png) Out-of-the-box project structure of a new Vue 3 project. @@ -28,13 +28,13 @@ Nothing surprising so far, but what really astonished me was how well everything The only changes I made were removing the `assets` folder and adding a command to the `package.json` to rebuild when something changed (build is still used for the production release). -![https://api.emvi.com/api/v1/content/A9Qi6HaL2RiOq5PjopiG.png](https://marvinblum.de/static/blog/bZ1DQzJdjK/A9Qi6HaL2RiOq5PjopiG.png) +![Scripts](/static/blog/vue3/scripts.png) A very lean `package.json`. I use to embed my apps inside a custom Go server, to have control over configuration, headers, how files are served, easier deployment, and to add some functionality of course. By default, the `build` and `watch` commands will put the compiled files into the `dist` folder, present inside the root directory. The app itself is a subdirectory of the Go server. -![https://api.emvi.com/api/v1/content/kG2XljOM5Ej5DK0L5G4H.png](https://marvinblum.de/static/blog/bZ1DQzJdjK/kG2XljOM5Ej5DK0L5G4H.png) +![UI](/static/blog/vue3/ui.png) Before, I just served the whole UI directory, but this time I had to select the directories under `dist` to make it work. @@ -60,7 +60,7 @@ You might have heard about the Composition API already. It's a new way to define I fell in love with it when I had to implement multiple dropdowns. Here is an example from Pirsch, when I built the menu and had to add four dropdowns, which are functionality-wise all the same. -![https://api.emvi.com/api/v1/content/TOAAT58QxRrVJHQOJ55t.jpeg](https://marvinblum.de/static/blog/bZ1DQzJdjK/TOAAT58QxRrVJHQOJ55t.jpeg) +![Composition](/static/blog/vue3/composition.jpeg) An early version of Pirsch's menu. @@ -213,7 +213,7 @@ Generics With Typescript Another moment I felt pretty good about my choice using TypeScript, was when I had to implement lists. Lists are often used to display data that would otherwise be in a table. They usually consist of "cards" in my apps, showing what it is and some additional fields and buttons to edit or remove them from the list. -![https://api.emvi.com/api/v1/content/dfW7HEb088pUlq6ZA9vp.png](https://marvinblum.de/static/blog/bZ1DQzJdjK/dfW7HEb088pUlq6ZA9vp.png) +![Access](/static/blog/vue3/access.png) I know this doesn't look very nice at the moment... diff --git a/static/blog/vue3/access.png b/static/blog/vue3/access.png new file mode 100644 index 0000000..e0f98a5 Binary files /dev/null and b/static/blog/vue3/access.png differ diff --git a/static/blog/vue3/composition.jpeg b/static/blog/vue3/composition.jpeg new file mode 100644 index 0000000..af47682 Binary files /dev/null and b/static/blog/vue3/composition.jpeg differ diff --git a/static/blog/vue3/scripts.png b/static/blog/vue3/scripts.png new file mode 100644 index 0000000..39c8586 Binary files /dev/null and b/static/blog/vue3/scripts.png differ diff --git a/static/blog/vue3/setup.png b/static/blog/vue3/setup.png new file mode 100644 index 0000000..181d246 Binary files /dev/null and b/static/blog/vue3/setup.png differ diff --git a/static/blog/vue3/structure.png b/static/blog/vue3/structure.png new file mode 100644 index 0000000..f605f00 Binary files /dev/null and b/static/blog/vue3/structure.png differ diff --git a/static/blog/vue3/ui.png b/static/blog/vue3/ui.png new file mode 100644 index 0000000..392e5b6 Binary files /dev/null and b/static/blog/vue3/ui.png differ diff --git a/static/blog/wildcard-ssl-certificates.md b/static/blog/wildcard-ssl-certificates.md index 2275fd9..8126760 100644 --- a/static/blog/wildcard-ssl-certificates.md +++ b/static/blog/wildcard-ssl-certificates.md @@ -2,7 +2,7 @@ > _This post was originally published on Medium a while ago. I just added it to my blog for completeness._ -![https://api.emvi.com/api/v1/content/NrnkLU0381vIVXCWKMJJ.png](https://marvinblum.de/static/blog/0odQzebaLO/NrnkLU0381vIVXCWKMJJ.png) +![Comic](/static/blog/wildcardssl/comic.png) Image by [CommitStrip](http://www.commitstrip.com/en/2016/06/13/the-end-of-an-expensive-era/). diff --git a/static/blog/wildcardssl/comic.png b/static/blog/wildcardssl/comic.png new file mode 100644 index 0000000..ca5c3c1 Binary files /dev/null and b/static/blog/wildcardssl/comic.png differ diff --git a/static/web/main.css b/static/web/main.css index f77d7c7..c1f89f3 100644 --- a/static/web/main.css +++ b/static/web/main.css @@ -1 +1 @@ -@font-face{font-family:"Open Sans";font-style:italic;font-weight:normal;font-stretch:100%;font-display:swap;src:url("../font/OpenSans-Italic.ttf") format("truetype")}@font-face{font-family:"Open Sans";font-style:normal;font-weight:normal;font-stretch:100%;font-display:swap;src:url("../font/OpenSans-Regular.ttf") format("truetype")}@font-face{font-family:"Open Sans";font-style:normal;font-weight:bold;font-stretch:100%;font-display:swap;src:url("../font/OpenSans-Bold.ttf") format("truetype")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:bold;font-stretch:100%;font-display:swap;src:url("../font/OpenSans-BoldItalic.ttf") format("truetype")}*{box-sizing:border-box;font-family:"Open Sans",sans-serif;font-size:18px;line-height:1.5;color:#0f0f0f}body{margin:0;padding:0}h1,h2{font-size:32px;margin:0 0 40px 0;font-weight:normal}h1 a,h2 a{font-size:32px}h2{margin:40px 0;font-size:26px}a{text-decoration:none;transition:all .3s;color:#717171}a:hover{color:#0f0f0f}p{margin:20px 0}img{display:block;max-width:80%;margin:40px auto}pre{max-width:80%;margin:40px auto;padding:20px;border-width:1px 1px 1px 2px;border-style:solid;border-color:#c0d9f0;border-radius:8px;overflow-x:auto;font-size:14px}code{font-family:"Courier New",Courier,monospace}hr{margin:40px 0;height:2px;background:#e6e6e6;border-width:0}nav{padding:80px 40px;background:#c0d9f0}nav .content{display:flex;justify-content:space-between;align-items:center;max-width:1000px;margin:0 auto}nav .content ul{display:flex;gap:20px;margin:0;padding:0}nav .content ul li{list-style:none;margin:0;padding:0}nav .content ul li a{color:#0f0f0f}nav .content ul li a svg{fill:#0f0f0f;transition:all .3s}nav .content ul li a:hover{color:#717171}nav .content ul li a:hover svg{fill:#717171}nav .content .contact{display:inline-block;padding:8px 16px;border-radius:8px;border:2px solid #0f0f0f;color:#0f0f0f;transition:all .3s}nav .content .contact:hover{background:#0f0f0f;color:#fff}section{max-width:1080px;margin:80px auto 0 auto;padding:0 40px}footer{max-width:1080px;margin:80px auto 0 auto;padding:0 40px}footer .content{max-width:1000px;margin:0 auto;border-style:solid;border-width:2px 0 0 0;border-color:#e6e6e6;padding:40px 0}.intro{background:#c0d9f0;max-width:100%;padding:0 40px 80px 40px;margin:0}.intro article{max-width:1000px;margin:0 auto;display:flex;gap:40px;justify-content:flex-start;align-items:center}.intro article h1{margin:0}.intro article img{max-width:196px;max-height:196px;aspect-ratio:1;border-radius:8px}/*# sourceMappingURL=main.css.map */ +@font-face{font-family:"Open Sans";font-style:italic;font-weight:normal;font-stretch:100%;font-display:swap;src:url("../font/OpenSans-Italic.ttf") format("truetype")}@font-face{font-family:"Open Sans";font-style:normal;font-weight:normal;font-stretch:100%;font-display:swap;src:url("../font/OpenSans-Regular.ttf") format("truetype")}@font-face{font-family:"Open Sans";font-style:normal;font-weight:bold;font-stretch:100%;font-display:swap;src:url("../font/OpenSans-Bold.ttf") format("truetype")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:bold;font-stretch:100%;font-display:swap;src:url("../font/OpenSans-BoldItalic.ttf") format("truetype")}*{box-sizing:border-box;font-family:"Open Sans",sans-serif;font-size:18px;line-height:2;color:#0f0f0f}body{margin:0;padding:0}h1,h2{font-size:32px;margin:0 0 40px 0;font-weight:normal}h1 a,h2 a{font-size:32px}h2{margin:40px 0;font-size:26px}a{text-decoration:none;transition:all .3s;color:#717171}a:hover{color:#0f0f0f}p{margin:20px 0}img{display:block;max-width:80%;margin:40px auto}pre{max-width:80%;margin:40px auto;padding:20px;border-width:1px 1px 1px 2px;border-style:solid;border-color:#c0d9f0;border-radius:8px;overflow-x:auto;font-size:14px}code{font-family:"Courier New",Courier,monospace}hr{margin:40px 0;height:2px;background:#e6e6e6;border-width:0}blockquote{margin:40px 0 40px 40px;padding:10px 20px;border-width:0 0 0 2px;border-style:solid;border-color:#c0d9f0}nav{padding:80px 40px;background:#c0d9f0}nav .content{display:flex;justify-content:space-between;align-items:center;max-width:1000px;margin:0 auto}nav .content ul{display:flex;gap:20px;margin:0;padding:0}nav .content ul li{list-style:none;margin:0;padding:0}nav .content ul li a{color:#0f0f0f}nav .content ul li a svg{fill:#0f0f0f;transition:all .3s}nav .content ul li a:hover{color:#717171}nav .content ul li a:hover svg{fill:#717171}nav .content .contact{display:inline-block;padding:8px 16px;border-radius:8px;border:2px solid #0f0f0f;color:#0f0f0f;transition:all .3s}nav .content .contact:hover{background:#0f0f0f;color:#fff}section{max-width:1080px;margin:80px auto 0 auto;padding:0 40px}footer{max-width:1080px;margin:80px auto 0 auto;padding:0 40px}footer .content{max-width:1000px;margin:0 auto;border-style:solid;border-width:2px 0 0 0;border-color:#e6e6e6;padding:40px 0}.intro{background:#c0d9f0;max-width:100%;padding:0 40px 80px 40px;margin:0}.intro article{max-width:1000px;margin:0 auto;display:flex;gap:40px;justify-content:flex-start;align-items:center}.intro article h1{margin:0}.intro article img{max-width:196px;max-height:196px;aspect-ratio:1;border-radius:8px}.blog-entry{margin-bottom:0}.blog-entry p{margin:0;color:#717171}.blog-entry h2{margin:0}.blog-entry a{color:#0f0f0f;font-size:26px}.blog-entry a:hover{color:#717171}/*# sourceMappingURL=main.css.map */ diff --git a/static/web/main.css.map b/static/web/main.css.map index 2f38a5f..64d9835 100644 --- a/static/web/main.css.map +++ b/static/web/main.css.map @@ -1 +1 @@ -{"version":3,"sourceRoot":"","sources":["../../assets/scss/_font.scss","../../assets/scss/main.scss"],"names":[],"mappings":"AAAA,WACI,wBACA,kBACA,mBACA,kBACA,kBACA,0DAGJ,WACI,wBACA,kBACA,mBACA,kBACA,kBACA,2DAGJ,WACI,wBACA,kBACA,iBACA,kBACA,kBACA,wDAGJ,WACI,wBACA,kBACA,iBACA,kBACA,kBACA,8DCzBJ,EACC,sBACA,mCACA,eACA,gBACA,MAVW,QAaZ,KACC,SACA,UAGD,MACC,eACA,kBACA,mBAEA,UACC,eAIF,GACC,cACA,eAGD,EACC,qBACA,mBACA,MAnCW,QAqCX,QACC,MAvCU,QA2CZ,EACC,cAGD,IACC,cACA,cACA,iBAGD,IACC,cACA,iBACA,aACA,6BACA,mBACA,aAxDW,QAyDX,cA7Dc,IA8Dd,gBACA,eAGD,KACC,4CAGD,GACC,cACA,WACA,WAtEW,QAuEX,eAGD,IACC,kBACA,WA3EW,QA6EX,aACC,aACA,8BACA,mBACA,iBACA,cAEA,gBACC,aACA,SACA,SACA,UAEA,mBACC,gBACA,SACA,UAEA,qBACC,MAnGO,QAqGP,yBACC,KAtGM,QAuGN,mBAGD,2BACC,MA1GM,QA4GN,+BACC,KA7GK,QAoHV,sBACC,qBACA,iBACA,cAzHY,IA0HZ,yBACA,MA1HS,QA2HT,mBAEA,4BACC,WA9HQ,QA+HR,WAMJ,QACC,iBACA,wBACA,eAGD,OACC,iBACA,wBACA,eAEA,gBACC,iBACA,cACA,mBACA,uBACA,aAnJU,QAoJV,eAIF,OACC,WAxJW,QAyJX,eACA,yBACA,SAEA,eACC,iBACA,cACA,aACA,SACA,2BACA,mBAEA,kBACC,SAGD,mBACC,gBACA,iBACA,eACA,cAjLY","file":"main.css"} \ No newline at end of file +{"version":3,"sourceRoot":"","sources":["../../assets/scss/_font.scss","../../assets/scss/main.scss"],"names":[],"mappings":"AAAA,WACI,wBACA,kBACA,mBACA,kBACA,kBACA,0DAGJ,WACI,wBACA,kBACA,mBACA,kBACA,kBACA,2DAGJ,WACI,wBACA,kBACA,iBACA,kBACA,kBACA,wDAGJ,WACI,wBACA,kBACA,iBACA,kBACA,kBACA,8DCzBJ,EACC,sBACA,mCACA,eACA,cACA,MAVW,QAaZ,KACC,SACA,UAGD,MACC,eACA,kBACA,mBAEA,UACC,eAIF,GACC,cACA,eAGD,EACC,qBACA,mBACA,MAnCW,QAqCX,QACC,MAvCU,QA2CZ,EACC,cAGD,IACC,cACA,cACA,iBAGD,IACC,cACA,iBACA,aACA,6BACA,mBACA,aAxDW,QAyDX,cA7Dc,IA8Dd,gBACA,eAGD,KACC,4CAGD,GACC,cACA,WACA,WAtEW,QAuEX,eAGD,WACC,wBACA,kBACA,uBACA,mBACA,aA9EW,QAiFZ,IACC,kBACA,WAnFW,QAqFX,aACC,aACA,8BACA,mBACA,iBACA,cAEA,gBACC,aACA,SACA,SACA,UAEA,mBACC,gBACA,SACA,UAEA,qBACC,MA3GO,QA6GP,yBACC,KA9GM,QA+GN,mBAGD,2BACC,MAlHM,QAoHN,+BACC,KArHK,QA4HV,sBACC,qBACA,iBACA,cAjIY,IAkIZ,yBACA,MAlIS,QAmIT,mBAEA,4BACC,WAtIQ,QAuIR,WAMJ,QACC,iBACA,wBACA,eAGD,OACC,iBACA,wBACA,eAEA,gBACC,iBACA,cACA,mBACA,uBACA,aA3JU,QA4JV,eAIF,OACC,WAhKW,QAiKX,eACA,yBACA,SAEA,eACC,iBACA,cACA,aACA,SACA,2BACA,mBAEA,kBACC,SAGD,mBACC,gBACA,iBACA,eACA,cAzLY,IA8Lf,YACC,gBAEA,cACC,SACA,MAjMU,QAoMX,eACC,SAGD,cACC,MA1MU,QA2MV,eAEA,oBACC,MA7MS","file":"main.css"} \ No newline at end of file diff --git a/tpl/blog_entry.html b/tpl/blog_entry.html new file mode 100644 index 0000000..1b5f25d --- /dev/null +++ b/tpl/blog_entry.html @@ -0,0 +1,8 @@ +
+ +