generic front-end polish

This commit is contained in:
s5260822 2025-03-19 01:07:18 +01:00
parent d8e36ed8d4
commit 307773f54e
2 changed files with 3 additions and 2 deletions

View file

@ -1,5 +1,6 @@
<head>
<link rel="stylesheet" href="index.css">
<title>Parliament Explorer</title>
</head>
<#include "header.ftl">
<body>

View file

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html lang="de">
<html lang="en">
<head>
<link rel="stylesheet" href="/index.css">
<meta charset="UTF-8">
@ -36,7 +36,7 @@
<tbody>
<#list parlamentarier as p>
<tr>
<td><a href="portfolio/${p.id}">${p.nachname}, ${p.vorname}</a></td>
<td><a href="portfolio/${p.id}">${p.vorname} ${p.nachname}</a></td>
<td>${p.partei}</td>
<td>${p.id}</td>
</tr>