mirror of
https://github.com/go-task/task.git
synced 2025-03-03 14:52:13 +02:00
Only the Carbon plugin needs to be defined before the `window.$docsify` declaration. Some others have to be after that to work correctly (namely search and tabs).
82 lines
2.5 KiB
HTML
82 lines
2.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Task</title>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
|
<meta name="description" content="A task runner / simpler Make alternative written in Go">
|
|
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple.css">
|
|
<meta name="google-site-verification" content="VGAYkbdmuaciIDGkBe-eAg9yfZg0C6ostgonbGxxOa0" />
|
|
<style>
|
|
#logo {
|
|
transition: all 0.7s ease;
|
|
}
|
|
#logo:hover {
|
|
-webkit-transform: rotateZ(360deg);
|
|
-ms-transform: rotateZ(360deg);
|
|
transform: rotateZ(360deg);
|
|
}
|
|
.app-name-link img {
|
|
width: 125px;
|
|
}
|
|
:root {
|
|
--base-font-size: 14px;
|
|
--theme-color: #29beb0;
|
|
}
|
|
|
|
#carbonads {
|
|
margin-bottom: 15px;
|
|
margin-left: -25px;
|
|
margin-right: -25px;
|
|
}
|
|
|
|
#carbonads .carbon-wrap {
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
#carbonads .carbon-text {
|
|
white-space: inherit;
|
|
}
|
|
</style>
|
|
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-4RT25NXQ7N"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
|
|
gtag('config', 'G-4RT25NXQ7N');
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
|
|
<script src="//cdn.jsdelivr.net/npm/docsify-plugin-carbon@1/index.min.js"></script>
|
|
|
|
<script>
|
|
window.$docsify = {
|
|
name: 'Task',
|
|
repo: 'go-task/task',
|
|
logo: 'Logo.png',
|
|
themeColor: '#29beb0',
|
|
loadSidebar: true,
|
|
auto2top: true,
|
|
maxLevel: 3,
|
|
subMaxLevel: 3,
|
|
plugins: [
|
|
DocsifyCarbon.create('CESI65QJ', 'taskfiledev')
|
|
]
|
|
}
|
|
</script>
|
|
|
|
<script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script>
|
|
<script src="//cdn.jsdelivr.net/npm/docsify-themeable/dist/js/docsify-themeable.min.js"></script>
|
|
<script src="//cdn.jsdelivr.net/npm/docsify-tabs"></script>
|
|
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
|
|
<script src="//cdn.jsdelivr.net/npm/prismjs/components/prism-bash.min.js"></script>
|
|
<script src="//cdn.jsdelivr.net/npm/prismjs/components/prism-yaml.min.js"></script>
|
|
</body>
|
|
</html>
|