feat: Make the blog consistent with the website
@ -2,7 +2,10 @@
|
|||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
/* Looks bad. And it is! Workaround for having no control over
|
||||||
|
* how the markdown python module renders the post.
|
||||||
|
*/
|
||||||
|
.post > article > p > img {
|
||||||
/* Prevent images in blog posts from getting too big */
|
/* Prevent images in blog posts from getting too big */
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
}
|
}
|
||||||
|
Before Width: | Height: | Size: 36 KiB After Width: | Height: | Size: 37 KiB |
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 47 KiB |
Before Width: | Height: | Size: 257 KiB After Width: | Height: | Size: 252 KiB |
@ -5,11 +5,11 @@
|
|||||||
"nixpkgs": "nixpkgs"
|
"nixpkgs": "nixpkgs"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1652540787,
|
"lastModified": 1654021036,
|
||||||
"narHash": "sha256-VU598G+6sAPkmHRIOoZohduMMjwXv/zRf2BYlgIcChA=",
|
"narHash": "sha256-O2RlvhV4jOtCJTEVNSeZYDJEE0xh4rTPxXLqHKrKVSo=",
|
||||||
"ref": "refs/heads/master",
|
"ref": "refs/heads/master",
|
||||||
"rev": "de5a0ba39fb9da7eec81f1f59d07af67ec4a9233",
|
"rev": "31dee4654f6b0577345a6d0a4bbbf1b795d5b7bc",
|
||||||
"revCount": 17,
|
"revCount": 19,
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://git.polynom.me/polynom.me/shared-assets.git"
|
"url": "https://git.polynom.me/polynom.me/shared-assets.git"
|
||||||
},
|
},
|
||||||
|
@ -21,5 +21,14 @@
|
|||||||
shared-assets = assets.packages.${system}.default;
|
shared-assets = assets.packages.${system}.default;
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
devShell = forAllSystems (system: let
|
||||||
|
pkgs = import nixpkgs { inherit system; };
|
||||||
|
pythonEnv = pkgs.python3.withPackages (ps: with ps; [ markdown ]);
|
||||||
|
in pkgs.mkShell {
|
||||||
|
buildInputs = with pkgs; [
|
||||||
|
pythonEnv gnumake imagemagick
|
||||||
|
];
|
||||||
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -15,28 +15,36 @@
|
|||||||
{{ mathjax_include }}
|
{{ mathjax_include }}
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1><center><a class="page-title" href="/">papatutuwawa@home:~$</a></center></h1>
|
<div class="horizontal-center">
|
||||||
<h3 class="title-sub"><center>by PapaTutuWawa</center></h3>
|
<div class="vertical header">
|
||||||
|
<div id="header" class="horizontal">
|
||||||
|
<img class="avatar" src="assets/img/avatar.jpg" />
|
||||||
|
|
||||||
<div class="container title-sub-subbar horizontal">
|
<div class="vertical-center">
|
||||||
<a href="/about.html" class="subbar-link"><h3>About</h3></a>
|
<span class="name-title">PapaTutuWawa's Blog</span>
|
||||||
<a href="/index.html" class="subbar-link"><h3>Archive</h3></a>
|
|
||||||
<a href="/atom.xml" class="subbar-link"><h3>RSS</h3></a>
|
<div id="header-links">
|
||||||
|
<ul>
|
||||||
|
<li><a href="index.html">Posts</a></li>
|
||||||
|
<li><a href="/atom.xml">RSS</a></li>
|
||||||
|
<li><a href="https://polynom.me">About</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="container">
|
<div class="horizontal-center">
|
||||||
{{ content }}
|
{{ content }}
|
||||||
</div>
|
</div>
|
||||||
</body>
|
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
<footer>
|
<center class="footer">
|
||||||
<center>
|
|
||||||
Created by <i>PapaTutuWawa</i> with <3 using
|
Created by <i>PapaTutuWawa</i> with <3 using
|
||||||
<a href="https://github.com/google/roboto">Roboto</a>,
|
<a href="https://github.com/google/roboto">Roboto</a>,
|
||||||
<a href="https://github.com/RedHatOfficial/Overpass">Overpass</a> and
|
<a href="https://github.com/RedHatOfficial/Overpass">Overpass</a> and
|
||||||
<a href="https://github.com/sunainapai/makesite">makesite</a>
|
<a href="https://github.com/sunainapai/makesite">makesite</a>
|
||||||
</center>
|
</center>
|
||||||
</footer>
|
</div>
|
||||||
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|