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