
Mission Migration Completed#
The migration from blogger to hugo is completed. Thanks to AI, this was working faster than expected. The migration path is described below.
flowchart TD
A[Creation of Basic Hugo Template]
B[Configuration of Landing Page / Theme]
C[First Hello World Post]
D[Migration of Posts]
E[Impressum and About Page]
F[Setup of RSS Feed]
G[Redirect Script Blogger to Hugo]
H[Official Migration Post - This one]
A --> B
B --> C
C --> D
D --> E
E --> F
F --> G
G --> H
The biggest timesaver was definitely the migration work, done by a LLM.
Also the redirect script from Blogger to Hugo was generated by AI based on the Mapping Table, created during the Migration itself.
(function () {
"use strict";
var redirects = {
"/2009/07/more-about-content.html": "https://markuskonrad.de/posts/2009-07-12_more-about-the-content/",
// other mappings...
};
var path = window.location.pathname;
var target = redirects[path];
if (target) {
window.location.replace(target);
return;
}
// Redirect Blogger-Landingpage to new Hugo page.
if (path === "/") {
window.location.replace("https://markuskonrad.de/");
}
})();For Impressum generator, I used https://datenschutz-generator.de/, thanks for the hint to my colleague Jörgen Schladot (CRM and Beyond).
Cheers!
