mirror of
https://github.com/HackPlan/gulp-angular-cloak.git
synced 2026-01-12 22:44:20 +08:00
21 lines
587 B
HTML
21 lines
587 B
HTML
<!DOCTYPE html>
|
|
<html ng-app="myApp">
|
|
|
|
<head>
|
|
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
|
|
<title>fixture</title>
|
|
|
|
</head>
|
|
|
|
<body ng-controller="MainCtrl">
|
|
<div ng-class="{active:somethingForNothing()}">
|
|
<span ng-if="rainbows()"></span>
|
|
</div>
|
|
<ng-include="index.html"></ng-include>
|
|
<ng-pluralize count="personCount" when="{'0': 'Nobody is viewing.',
|
|
'one': '1 person is viewing.',
|
|
'other': '{} people are viewing.'}" />
|
|
</body>
|
|
|
|
</html>
|