Last active
December 30, 2015 18:38
-
-
Save nakaearth/7868434 to your computer and use it in GitHub Desktop.
ブログ用のサンプルコード
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE HTML> | |
| <html ng-app> | |
| <head> | |
| <script src="assets/application.js"></script> | |
| <script src="js/testScript.js"></script> | |
| </head> | |
| <body> | |
| <div> | |
| <label>Name:</label> | |
| <input type="text" ng-model="yourName" placeholder="Enter a name here"> | |
| <br/> | |
| <font size="4">Hello {{yourName}}!</font> | |
| </div> | |
| <br/> | |
| <div ng-controller="testCtrl"> | |
| <div ng-repeat="user in users" > | |
| {{user.name }} {{user.point }} | |
| </div> | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment