Webフォント(M+)を使うようにした¶
デザインはともかく、フォントが汚ないのは我慢ならない。 M+ FONTS がWEBフォントを用意しているので、これを使ってみる。
_templates/page.html
{% extends "!page.html" %}
{% set css_files = css_files + ["http://mplus-fonts.sourceforge.jp/webfonts/mplus_webfonts.css", "_static/style.css"] %}
_static/style.css
body {
font-family: mplus-2c-light, sans-serif;
}
h1 {
font-family: mplus-2c-reguler, sans-serif;
}
pre {
font-family: mplus-2m-regular, sans-serif;
}