69 lines
2.6 KiB
HTML
69 lines
2.6 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">
|
||
<template x-if="loading">
|
||
<div class="loader"></div>
|
||
</template>
|
||
<div class="row">
|
||
<div class="colum">
|
||
<h1>Steam Workshop Items Viewer</h1>
|
||
</div>
|
||
</div>
|
||
<div class="row">
|
||
<div class="column">
|
||
<label for="taWorkshopId">WorkshopIDs</label>
|
||
<textarea id="taWorkshopId" class="u-full-width" x-model="ids"></textarea>
|
||
<button x-on:click="getModDescription()">load mod descriptions</button>
|
||
</div>
|
||
</div>
|
||
<template x-if="items.length > 0">
|
||
<div class="row">
|
||
<div class="column">
|
||
<table class="u-full-width">
|
||
<thead>
|
||
<tr>
|
||
<th>Workshop ID</th>
|
||
<th>Titel</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<template x-for="item in items" :key="item.id">
|
||
<tr>
|
||
<td x-text="item.id"></td>
|
||
<td x-text="item.title"></td>
|
||
</tr>
|
||
</template>
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
</div>
|
||
</body>
|
||
</html>
|