mirror of
https://github.com/tdurieux/anonymous_github.git
synced 2026-02-13 02:42:45 +00:00
45 lines
1.7 KiB
HTML
45 lines
1.7 KiB
HTML
<!-- index.html -->
|
|
<!DOCTYPE html>
|
|
<html lang="en" ng-app="anonymous-github" ng-controller="mainController">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title ng-bind="title">Anonymous Github</title>
|
|
<base href="/" />
|
|
|
|
<!-- CSS -->
|
|
<link rel="stylesheet" href="/css/bootstrap.min.css" />
|
|
<link rel="stylesheet" href="/css/prism.css" />
|
|
<link rel="stylesheet" href="/css/font-awesome.min.css" />
|
|
<link rel="stylesheet" href="/css/github-markdown.min.css" />
|
|
|
|
<link rel="stylesheet" href="/css/style.css" />
|
|
|
|
<!-- JS -->
|
|
<script src="/script/external/angular.min.js"></script>
|
|
<script src="/script/external/angular-sanitize.min.js"></script>
|
|
<script src="/script/external/angular-route.min.js"></script>
|
|
|
|
<script src="/script/external/jquery-3.4.1.min.js"></script>
|
|
<script src="/script/external/popper.min.js"></script>
|
|
<script src="/script/external/bootstrap.min.js"></script>
|
|
|
|
<script src="/script/external/prism.min.js"></script>
|
|
<script src="/script/external/marked.min.js"></script>
|
|
|
|
<script src="/script/homeApp.js"></script>
|
|
</head>
|
|
<body keypress-events class="d-flex flex-column">
|
|
<ng-include src="'partials/header.htm'"></ng-include>
|
|
<ng-view class="align-items-stretch h-100 w-100 overflow-auto"></ng-view>
|
|
<script src="https://storage.ko-fi.com/cdn/scripts/overlay-widget.js"></script>
|
|
<script>
|
|
kofiWidgetOverlay.draw("tdurieux", {
|
|
type: "floating-chat",
|
|
"floating-chat.donateButton.text": "Support me",
|
|
"floating-chat.donateButton.background-color": "#323842",
|
|
"floating-chat.donateButton.text-color": "#fff",
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|