From c55e92fe93ebb31ba8d46928313dc1d6a08f448d Mon Sep 17 00:00:00 2001 From: jaseg Date: Sun, 19 Mar 2023 15:55:56 +0100 Subject: Fix headline alignment & deployment --- deploy.py | 4 ++-- themes/conspiracy/assets/css/style.css | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/deploy.py b/deploy.py index d8a99c1..c960fbc 100644 --- a/deploy.py +++ b/deploy.py @@ -14,8 +14,8 @@ if __name__ == '__main__': subprocess.run(['git', 'worktree', 'add', '--detach', tmpdir], check=True) try: - env = dict(os.environ()) - env['PATH'] = Path('hack').absolute() + ':' + env['PATH'] + env = dict(os.environ) + env['PATH'] = f'{Path("hack").absolute()}:{env["PATH"]}' subprocess.run(['hugo'], cwd=tmpdir, check=True, env=env) subprocess.run(['git', 'add', '--force', 'public'], cwd=tmpdir, check=True) write_tree = subprocess.run(['git', 'write-tree', '--prefix=public/'], cwd=tmpdir, check=True, capture_output=True) diff --git a/themes/conspiracy/assets/css/style.css b/themes/conspiracy/assets/css/style.css index c3afe86..f03f4ac 100644 --- a/themes/conspiracy/assets/css/style.css +++ b/themes/conspiracy/assets/css/style.css @@ -166,6 +166,7 @@ h1, h2, h3, h4, h5, h6 { margin-top: 50px; margin-bottom: 8px; font-family: "Bodoni Moda"; + text-align: left; } h1 { -- cgit