bioweb  0.09.92
C++/Python(django)/JavaScript(angularJS) framework
myapp_body.html
1 <!-- this file contains sections included during build into html body of test and static html page" -->
2 
3 <div class="container" ng-controller="settingsController">
4  <ul id="icons_ul">
5  <li ng-repeat="lang in langs">
6  <a id="a_lang_{{lang}}" ng-click="changeLanguage(lang)"><img ng-src="pict/{{lang}}.png" /></a>
7  </li>
8  </ul>
9 </div>
10 
11 <div id="content" class="container" ng-view>
12 </div>