mirror of
https://github.com/amineo/t2-stat-parser.git
synced 2026-03-04 04:10:21 +00:00
25 lines
715 B
Text
25 lines
715 B
Text
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>Tribes 2 Stats</title>
|
|
|
|
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
|
|
@if(node_env().env === "production")
|
|
{{ style(versioncss('main')) }}
|
|
@else
|
|
{{ style('dist/css/main') }}
|
|
@endif
|
|
</head>
|
|
<body class="antialiased font-sans bg-gray-200">
|
|
{{{ startTag }}}
|
|
{{-- {{ edgeVar }} --}}
|
|
@if(node_env().env === "production" || node_env().hmr === "false")
|
|
{{ script(versionjs('app')) }}
|
|
@else
|
|
{{ script('http://localhost:8081/dist/js/app.js') }}
|
|
@endif
|
|
</body>
|
|
</html>
|