Indent HTML with two spaces
This commit is contained in:
parent
84c47862d5
commit
53e44376a5
@ -1,5 +1,5 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<title>Lingo</title>
|
<title>Lingo</title>
|
||||||
@ -25,18 +25,13 @@
|
|||||||
<h3 class="panel-title">Games</h3>
|
<h3 class="panel-title">Games</h3>
|
||||||
</div>
|
</div>
|
||||||
<div class="list-group">
|
<div class="list-group">
|
||||||
<div v-if="games.length === 0" class="list-group-item">
|
<div v-if="games.length === 0" class="list-group-item">There are no games.</div>
|
||||||
There are no games.
|
|
||||||
</div>
|
|
||||||
<div v-for="game in games">
|
<div v-for="game in games">
|
||||||
<div v-if="game.started" v-bind:id="'game-' + game.id" class="list-group-item">
|
<div v-if="game.started" v-bind:id="'game-' + game.id" class="list-group-item">
|
||||||
<strong>{{ game.playerOne }}</strong>
|
<strong>{{ game.playerOne }}</strong> is playing with <strong>{{ game.playerTwo }}</strong>
|
||||||
is playing with
|
|
||||||
<strong>{{ game.playerTwo }}</strong>
|
|
||||||
</div>
|
</div>
|
||||||
<button v-else v-bind:id="'game-' + game.id" @click="joinGame" type="button" class="list-group-item">
|
<button v-else v-bind:id="'game-' + game.id" @click="joinGame" type="button" class="list-group-item">
|
||||||
<strong>{{ game.playerOne }}</strong>
|
<strong>{{ game.playerOne }}</strong> wants to play
|
||||||
wants to play
|
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<title>Lingo</title>
|
<title>Lingo</title>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user