ffffng/admin/index.html

27 lines
616 B
HTML
Raw Normal View History

2016-06-04 14:58:11 +02:00
<!doctype html>
<html lang="en">
<head>
<title>Knotenverwaltung - Admin-Panel</title>
<link rel="stylesheet" href="css/ng-admin.min.css">
<style>
.task-enabled {
color: green;
}
.task-disabled {
color: lightcoral;
text-decoration: line-through;
}
</style>
2016-06-04 14:58:11 +02:00
</head>
<body ng-app="ffffngAdmin">
<div ui-view></div>
<script src="js/moment-with-locales.min.js"></script>
<script src="js/ng-admin.min.js"></script>
<script src="js/config.js"></script>
<script src="js/taskActionButton.js"></script>
</body>
</html>