changed interpolation to format string

This commit is contained in:
2024-10-12 09:17:04 -07:00
parent 4c6310343d
commit 3496759430
2 changed files with 10 additions and 5 deletions

View File

@@ -4,7 +4,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- %s = map name -->
<title>%s - Leaderboards - Minimal Working Example</title>
<title>{title} - Leaderboards - Minimal Working Example</title>
<link href="/style.css" rel="stylesheet" type="text/css" media="all">
<!-- <link href="../style.css" rel="stylesheet" type="text/css" media="all"> -->
<link href="../leaderboard.css" rel="stylesheet" type="text/css" media="all">
@@ -12,10 +12,10 @@
<body>
<!-- map name -->
<h1>%s</h1>
<h1>{map_name}</h1>
<!-- code generated table goes here -->
%s
{table}
<footer>
<p>Page generated using <a href="https://notabug.org/scuti/xdfcgi">xdfcgi</a> by <a href="https://scuti.neocities.org/">scuti</a></p>