图书馆智能管理系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
611 B

5 months ago
  1. <div id={{app.id}} class="app-wrapper" ng-repeat="app in model.apps">
  2. <div class="app {{app.theme}}">
  3. <a href="{{app.fixedUrl}}">
  4. <div class="app-content">
  5. <h3>{{app.titleKey && (app.titleKey | translate) || app.name}}</h3>
  6. <p>{{app.descriptionKey && (app.descriptionKey | translate) || app.description}}</p>
  7. </div>
  8. <div class="backdrop">
  9. <i class="{{app.icon}}"></i>
  10. </div>
  11. <div class="logo">
  12. <i class="{{app.icon}}"></i>
  13. </div>
  14. </a>
  15. </div>
  16. </div>