fix wrapper size on blogpost layout

This commit is contained in:
LelouchFR 2026-03-17 11:07:40 +00:00
parent 0143ae73df
commit 138ee1e18e
8 changed files with 3 additions and 10 deletions

View File

@ -215,7 +215,7 @@ header {
@media screen and (max-width: 600px) {
.wrapper {
width: 100%;
width: 90%;
}
header {

View File

@ -173,9 +173,6 @@ footer .bandwidth-raccoon-wrapper .text-bubble:after {
grid-template-columns: 1fr;
grid-template-rows: repeat(4, fit-content(100%));
}
:where(body.terms) footer {
width: 90%;
}
footer div {
justify-self: start;
}

View File

@ -34,7 +34,7 @@ const discordOAuth = new DiscordOauth2({
router.get('/', requireLoginMiddleware, async (request, response) => {
// Setup the data to be sent to the handlebars renderer
const renderData = { page: 'account' };
const renderData = { };
// Check for Stripe messages
const { upgrade_success } = request.query;

View File

@ -37,7 +37,6 @@ async function getPostsList() {
router.get('/', async (request, response) => {
const postList = await getPostsList();
const renderData = {
page: 'blog',
postList
};

View File

@ -32,7 +32,6 @@ router.get([
'/errors'
], async (_request, response) => {
const renderData = {
page: 'docs',
errorList: JSON.stringify(errorList),
currentPage: 'errors'
};

View File

@ -4,7 +4,7 @@ const { getGithubProjectsCache } = require('../cache');
const router = new Router();
router.get('/', async (request, response) => {
const renderData = { page: 'home' };
const renderData = { };
const githubProjectsCache = await getGithubProjectsCache();

View File

@ -5,7 +5,6 @@ const router = new Router();
router.get('/', async (request, response) => {
const renderData = {
page: 'progress',
progressLists: await getGithubProjectsCache(),
donationCache: await getStripeDonationCache()
};

View File

@ -9,7 +9,6 @@ const router = new Router();
router.get('/:slug', async (request, response, next) => {
const renderData = {
page: 'terms',
layout: 'blog-opengraph'
};