Skip to content

Instantly share code, notes, and snippets.

@dillongreen
Created November 18, 2013 22:20
Show Gist options
  • Save dillongreen/7536417 to your computer and use it in GitHub Desktop.
Save dillongreen/7536417 to your computer and use it in GitHub Desktop.
{{loginButtons align="right"}} not working
I see the same result for {{loginButtons align="right"}} and {{loginButtons}} on a completely fresh project. What am I missing?
cat .meteor/packages gives:
# Meteor Packages Used By This Project, One Per Line.
#
# 'Meteor Add' And 'Meteor Remove' Will Edit This File For You,
# But You Can Also Edit It By Hand.
Standard-App-Packages
Autopublish
Insecure
Preserve-Inputs
Accounts-Ui
Accounts-Password
foo.html:
<head>
<title>bar</title>
</head>
<body>
{{loginButtons align="right"}}
{{> hello}}
</body>
<template name="hello">
<h1>Hello World!</h1>
{{greeting}}
<input type="button" value="Click" />
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment