41 lines
1.7 KiB
HTML
41 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en" xmlns:x-on="http://www.w3.org/1999/xhtml">
|
||
<head>
|
||
|
||
<!-- Basic Page Needs –––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||
<meta charset="utf-8">
|
||
<title>Your page title here :)</title>
|
||
<meta name="description" content="">
|
||
<meta name="author" content="">
|
||
|
||
<!-- Mobile Specific Metas –––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
||
<!-- FONT –––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
|
||
|
||
<!-- CSS –––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||
<link rel="stylesheet" href="css/normalize.css">
|
||
<link rel="stylesheet" href="css/skeleton.css">
|
||
|
||
<link rel="icon" type="image/png" href="images/favicon.png">
|
||
|
||
<script src="steam.js"></script>
|
||
</head>
|
||
<body>
|
||
|
||
<div class="container" x-data="workshopList">
|
||
<div class="row">
|
||
<div class="column">
|
||
<h1>Steam Workshop Viewer</h1>
|
||
<label for="workshopIdList">WorkshopIDs</label>
|
||
<textarea id="workshopIdList" x-model="ids"></textarea>
|
||
<button x-on:click="getModDescription()">load mod descriptions</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
</body>
|
||
|
||
</html>
|