-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsnippets.txt
42 lines (35 loc) · 1.17 KB
/
snippets.txt
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
1. Add custom css
---
<link href="custom.css" rel="stylesheet">
---
2. Add custom js
---
<script async="" src="./custom.js"></script>
---
3. Remove old GA and replace with new one
---
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-117726844-4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-117726844-4');
</script>
---
4. Add spons div
---
<div onclick="window.open('https://ccextractor.org')" class="team-card flex flex-column center-vertical center-horizontal w100">
---
5. Add spons div
---
<div onclick="window.open('https://github.com/debugger22')" class="team-card flex flex-column center-vertical center-horizontal w100">
---
6. Add spons div
---
<div onclick="window.open('https://python.org')" class="team-card flex flex-column center-vertical center-horizontal w100">
---
7. Add spons div
---
<div onclick="window.open('https://weblate.org')" class="team-card flex flex-column center-vertical center-horizontal w100">
---