Skip to content

Instantly share code, notes, and snippets.

@sebs
Created September 2, 2016 11:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sebs/a2701351cbaa92737d1b981850eaa68e to your computer and use it in GitHub Desktop.
Save sebs/a2701351cbaa92737d1b981850eaa68e to your computer and use it in GitHub Desktop.
<head>
<title>testapp</title>
<script src="https://cdn.rawgit.com/Upchain/upchain-web3-http-provider/v1.9.1/dist/bundle.js" ></script>
</head>
<body>
<h1>Welcome to Meteor!</h1>
{{> hello}}
{{> info}}
</body>
<template name="hello">
<button>Click Me</button>
<p>You've pressed the button {{counter}} times.</p>
</template>
<template name="info">
<h2>Learn Meteor!</h2>
<ul>
<li><a href="https://www.meteor.com/try" target="_blank">Do the Tutorial</a></li>
<li><a href="http://guide.meteor.com" target="_blank">Follow the Guide</a></li>
<li><a href="https://docs.meteor.com" target="_blank">Read the Docs</a></li>
<li><a href="https://forums.meteor.com" target="_blank">Discussions</a></li>
</ul>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment