Changed bubulescu font and something else

This commit is contained in:
hbrain 2026-06-04 18:59:37 +02:00
parent 36c1c52ab2
commit 01d5d78fc3
2 changed files with 15 additions and 2 deletions

View file

@ -122,6 +122,7 @@ function render_blank_page(){
$headerTitles = require __DIR__ . '/header_titles.php';
$siteHeaderTitle = $headerTitles[array_rand($headerTitles)];
$brandUrl = '/';
$ogImageUrl = 'https://bubulescu.org/assets/img/bubulescuorg.jpg';
?>
<!doctype html>
<html>
@ -129,10 +130,22 @@ function render_blank_page(){
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>MVLog</title>
<meta property="og:type" content="website">
<meta property="og:title" content="Bubulescu.Org">
<meta property="og:description" content="Motorcycle road stories, videos and occasional bad decisions.">
<meta property="og:url" content="https://bubulescu.org/">
<meta property="og:site_name" content="Bubulescu.Org">
<meta property="og:image" content="<?=h($ogImageUrl)?>">
<meta property="og:image:secure_url" content="<?=h($ogImageUrl)?>">
<meta property="og:image:type" content="image/jpeg">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:image:alt" content="Bubulescu.Org">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="<?=h($ogImageUrl)?>">
<link rel="icon" type="image/png" href="assets/img/moto_travel.png">
<link rel="stylesheet" href="style.css?v=20260531u">
<style>html,body{height:100%;overflow:hidden}body{height:100dvh}main{flex:1;min-height:0}</style>
<?php if ($articleId !== ''): ?><style>main{padding-bottom:0}</style><?php endif; ?>
</head>
<body>
<?php include __DIR__ . '/_header.php'; ?>

File diff suppressed because one or more lines are too long