Files
CoqDecks/app/views/index.scala.html
T
2016-07-11 13:08:25 +01:00

22 lines
837 B
HTML

@(url: String, version: String)<!doctype html>
<html lang="en">
<head>
@head("Massive Decks", url)
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css"
integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1"
crossorigin="anonymous">
<script src="@routes.Assets.versioned("javascripts/qrcode.min.js")"></script>
<link rel="stylesheet" href="@routes.Assets.versioned("stylesheets/massivedecks.css")">
<script src="@routes.Assets.versioned("javascripts/util.js")"></script>
</head>
<body>
<script src="@routes.Assets.versioned("javascripts/MassiveDecks.js")"></script>
<script>
start("@url", "@version");
</script>
</body>
</html>