Content inside aldanin
(The raw file follows this syntax highlighted file.)

<!doctype html>
<head>
<meta charset="UTF-8">
<title>{{$.Hostname}}</title>
<meta name="description" content="development craftsmanship">
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<link rel="preload" href="https://fonts.googleapis.com/css2?family=Oswald:wght@200&display=swap" as="style">
<link rel="stylesheet" href="/normalize.css">
<link rel="stylesheet" href="/base.css">
</head>
<body style="user-select:none; text-align:center;">
	<div id="icon">
		<a class=".button.icon-button" href="https://git.ondollo.com">
			<svg id="svgIcon" viewbox="0 0 32 32">
				<circle cx="16" cy="16" r="15.5" stroke-width="1"; style="stroke:#000000; fill:#ffffff;"></circle>
				<text transform="translate(13,7) rotate(45)">O</text>
				<text transform="translate(20,4.5) rotate(45)">O</text>
				<text transform="translate(27,2) rotate(45)">O</text>
				<defs><style type="text/css">@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200&display=swap');</style></defs>
			</svg>
		</a>
	</div>
	<div id="title">{{$.Hostname}}</div>
	<div id="content" style="display:flex; flex-direction:column; align-items:center;">
		<div><a href="{{$.BrowseRoot}}" style="font-weight:bold">Browse</a> the repositories show below</div>
		{{range .Repos}}
		<div id="{{.RepoName}}" style="margin-top:1em; display:flex; width:450px;">
			<div style="flex:0 0 5em; text-align:right; padding-right:1em;">
				<a href="#{{.RepoName}}" onclick="navigator.clipboard.writeText('git clone https://{{$.Hostname}}/{{.RepoName}}.git')">{{.RepoName}}</a>
			</div>
			<div style="flex:0 auto; text-align:left; width:100%;">{{.RepoDescription.Body}}</div>
			{{if .RepoDescription.IsGolang}}
			<div>
				<a href="https://pkg.go.dev/{{$.Hostname}}/{{.RepoName}}">
					<img src="https://pkg.go.dev/badge/{{$.Hostname}}/{{.RepoName}}.svg" alt="Go Reference">
				</a>
			</div>
			{{else}}
			<div style="min-width:90px"></div>
			{{end}}
		</div>
		{{end}}
		<div style="margin-top: 2em">(clicking the link copies the clone command)</div>
	</div>
</body>


The raw file follows...


<!doctype html>
<head>
<meta charset="UTF-8">
<title>{{$.Hostname}}</title>
<meta name="description" content="development craftsmanship">
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<link rel="preload" href="https://fonts.googleapis.com/css2?family=Oswald:wght@200&display=swap" as="style">
<link rel="stylesheet" href="/normalize.css">
<link rel="stylesheet" href="/base.css">
</head>
<body style="user-select:none; text-align:center;">
	<div id="icon">
		<a class=".button.icon-button" href="https://git.ondollo.com">
			<svg id="svgIcon" viewbox="0 0 32 32">
				<circle cx="16" cy="16" r="15.5" stroke-width="1"; style="stroke:#000000; fill:#ffffff;"></circle>
				<text transform="translate(13,7) rotate(45)">O</text>
				<text transform="translate(20,4.5) rotate(45)">O</text>
				<text transform="translate(27,2) rotate(45)">O</text>
				<defs><style type="text/css">@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200&display=swap');</style></defs>
			</svg>
		</a>
	</div>
	<div id="title">{{$.Hostname}}</div>
	<div id="content" style="display:flex; flex-direction:column; align-items:center;">
		<div><a href="{{$.BrowseRoot}}" style="font-weight:bold">Browse</a> the repositories show below</div>
		{{range .Repos}}
		<div id="{{.RepoName}}" style="margin-top:1em; display:flex; width:450px;">
			<div style="flex:0 0 5em; text-align:right; padding-right:1em;">
				<a href="#{{.RepoName}}" onclick="navigator.clipboard.writeText('git clone https://{{$.Hostname}}/{{.RepoName}}.git')">{{.RepoName}}</a>
			</div>
			<div style="flex:0 auto; text-align:left; width:100%;">{{.RepoDescription.Body}}</div>
			{{if .RepoDescription.IsGolang}}
			<div>
				<a href="https://pkg.go.dev/{{$.Hostname}}/{{.RepoName}}">
					<img src="https://pkg.go.dev/badge/{{$.Hostname}}/{{.RepoName}}.svg" alt="Go Reference">
				</a>
			</div>
			{{else}}
			<div style="min-width:90px"></div>
			{{end}}
		</div>
		{{end}}
		<div style="margin-top: 2em">(clicking the link copies the clone command)</div>
	</div>
</body>