Indent HTML with two spaces

This commit is contained in:
Charles Gould 2017-01-29 11:58:33 -05:00
parent 84c47862d5
commit 53e44376a5
2 changed files with 62 additions and 67 deletions

View File

@ -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>

View File

@ -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>