-
-
Notifications
You must be signed in to change notification settings - Fork 58
/
index.html
112 lines (92 loc) · 3.91 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta charset="UTF-8" />
<!-- HTML Meta Tags -->
<title>AI Collective Tools</title>
<meta name="description" content="Explore a curated selection of AI tools and resources at AI Tools Collective." />
<!-- Google / Search Engine Tags -->
<meta itemprop="name" content="AI Collective Tools" />
<meta itemprop="description"
content="Explore a curated selection of AI tools and resources at AI Tools Collective." />
<meta itemprop="image" content="https://raw.githubusercontent.com/Hyraze/ai-collective-tools/main/logo.webp" />
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://aicollective.tools" />
<meta property="og:type" content="website" />
<meta property="og:title" content="AI Collective Tools" />
<meta property="og:description"
content="Explore a curated selection of AI tools and resources at AI Tools Collective." />
<meta property="og:image" content="https://raw.githubusercontent.com/Hyraze/ai-collective-tools/main/logo.webp" />
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="AI Collective Tools" />
<meta name="twitter:description"
content="Explore a curated selection of AI tools and resources at AI Tools Collective." />
<meta name="twitter:image" content="https://raw.githubusercontent.com/Hyraze/ai-collective-tools/main/logo.webp" />
<!-- Stylesheets -->
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify/themes/vue.css" />
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify-darklight-theme@latest/dist/style.min.css"
title="docsify-darklight-theme" type="text/css" />
<!-- Favicon -->
<link rel="icon" href="logo.webp" type="image/gif" />
<!-- Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-JX15QJP4MN"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-JX15QJP4MN");
</script>
</head>
<body>
<noscript>This page requires JavaScript to work, please enable it or read
<a href="https://github.com/Hyraze/ai-collective-tools">here</a>.</noscript>
<div id="app">Loading...</div>
<script>
window.$docsify = {
name: "AI Collective Tools",
repo: "Hyraze/ai-collective-tools",
search: ["/"],
darklightTheme: {
siteFont: "Source Sans Pro, Helvetica Neue",
defaultTheme: "light",
codeFontFamily: "Roboto Mono, Monaco, courier, monospace",
bodyFontSize: "15px",
},
};
</script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-darklight-theme@latest/dist/index.min.js" type="text/javascript">
</script>
<script>
window.onload = function () {
// Get all the anchor elements on the page
var allLinks = document.links;
// Iterate through the anchor elements and add the query parameter to the href attributes
for (var i = 0; i < allLinks.length; i++) {
var href = allLinks[i].href;
// skip the internal links
if(href.startsWith(window.location.origin)){
continue;
}
// Check if the URL already has a query parameter
if (href.includes('?')) {
allLinks[i].href = href + '&ref='+window.location.hostname; // Append this website as reference
} else {
allLinks[i].href = href + '?ref='+window.location.hostname; // Append this website as reference
}
}
};
</script>
<style>
blockquote:first-of-type {
background-color: rgba(235, 248, 242, 0.363);
}
</style>
</body>
</html>