Browse Source

Merge 43538c0da7 into ebf34315df

pull/8/merge
muneerahalasqah 8 years ago
committed by GitHub
parent
commit
7070b377ad
  1. 27
      template/index.html

27
template/index.html

@ -3,13 +3,28 @@
<head> <head>
<title>Welcome to Vue</title> <title>Welcome to Vue</title>
<script src="https://unpkg.com/vue"></script> <script src="https://unpkg.com/vue"></script>
<style>
#logo
{
display: block;
margin: 0 auto;
}
#blue
{
background-color: #35495E;
padding:10px;
}
</style>
</head> </head>
<body> <body>
<div id="app"> <div id="app">
<img src="https://vuejs.org/images/logo.png" alt="Vue logo">
<h1>\{{ greeting }}</h1>
<ul>
<li>
<img id="logo"src="https://vuejs.org/images/logo.png" alt="Vue logo">
<br>
<div id="blue"><h1 style="color: white; text-align: center;">\{{ greeting }}</h1>
<br>
<ul style="color: lightgrey;">
<li >
To learn more about Vue, visit To learn more about Vue, visit
<a :href="docsURL" target="_blank"> <a :href="docsURL" target="_blank">
\{{ humanizeURL(docsURL) }} \{{ humanizeURL(docsURL) }}
@ -27,7 +42,7 @@
the forum the forum
</a> </a>
</li> </li>
</ul>
</ul> </div>
</div> </div>
<script> <script>
@ -49,4 +64,4 @@
}) })
</script> </script>
</body> </body>
</html>
</html>
Loading…
Cancel
Save