Last active
December 30, 2015 21:18
-
-
Save nakaearth/7886172 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 lang="ja" ng-app="EventSample"> | |
<head> | |
<script src="assets/application.js"></script> | |
<link href="assets/application.css" media="all" rel="stylesheet" /> | |
</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> | |
<div class="content" ng-controller="EventsCtrl"> | |
<div class="content_div"> | |
<div ng-repeat="event in events"> | |
{{event.title}} | {{event.description}} | |
</div> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment