mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-20 04:58:32 +02:00
Add Google Analytics
This commit is contained in:
parent
4ecaf197f5
commit
1f181496c3
3 changed files with 16 additions and 4 deletions
18
docs/theme/index.html
vendored
18
docs/theme/index.html
vendored
|
@ -21,7 +21,7 @@
|
|||
<meta name="og:site_name" content="jrnl - The Command Line Journal">
|
||||
<meta name="og:type" content="website">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300,400' rel='stylesheet' type='text/css'>
|
||||
<link href='https://fonts.googleapis.com/css?family=Open+Sans:300,400' rel='stylesheet' type='text/css'>
|
||||
<link rel="stylesheet" href="index.css">
|
||||
<link rel="shortcut icon" href="img/favicon.ico">
|
||||
<script type="application/ld+json">
|
||||
|
@ -37,6 +37,13 @@
|
|||
"softwareVersion": "2.0.0rc2"
|
||||
}
|
||||
</script>
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-153567313-1"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'UA-153567313-1');
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -57,7 +64,7 @@
|
|||
<main>
|
||||
<nav>
|
||||
<a href="overview">Documentation</a>
|
||||
<a href="http://github.com/jrnl-org/jrnl" title="View on Github">Fork me on GitHub</a>
|
||||
<a href="https://github.com/jrnl-org/jrnl" title="View on Github">Fork me on GitHub</a>
|
||||
<a id="twitter-nav" href="https://twitter.com/intent/tweet?text=Write+your+memoirs+on+the+command+line.+Like+a+boss.+%23jrnl&url=http%3A%2F%2Fjrnl.sh&via=maebert">Tell your friends on twitter</a>
|
||||
<a href="installation" class="cta">Download</a>
|
||||
</nav>
|
||||
|
@ -82,6 +89,11 @@
|
|||
<h3>Accessible anywhere.</h3>
|
||||
<p>Sync your journals with Dropbox and capture your thoughts where ever you are</p>
|
||||
</section>
|
||||
<section>
|
||||
<i class="icon dayone"></i>
|
||||
<h3>DayOne compatible.</h3>
|
||||
<p>Read, write and search your DayOne journal from the command line.</p>
|
||||
</section>
|
||||
<section>
|
||||
<i class="icon github"></i>
|
||||
<h3>Free & Open Source.</h3>
|
||||
|
@ -97,7 +109,7 @@
|
|||
<footer>
|
||||
jrnl is made with love by <a rel="author" href="http://www.1450.me">Manuel Ebert</a> and <a href="https://github.com/jrnl-org/jrnl/graphs/contributors" title="Contributors">many other fabulous people</a>. If you need help, <a href="https://github.com/jrnl-org/jrnl/issues/new" title="Open a new issue on Github">submit an issue</a> on Github.
|
||||
</footer>
|
||||
<script src="//cdnjs.cloudflare.com/ajax/libs/typed.js/2.0.10/typed.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/typed.js/2.0.10/typed.min.js"></script>
|
||||
<script>
|
||||
new Typed("#typed", {
|
||||
strings: [
|
||||
|
|
1
docs/theme/index.js
vendored
1
docs/theme/index.js
vendored
|
@ -1 +0,0 @@
|
|||
var typed2 =
|
|
@ -1,4 +1,5 @@
|
|||
site_name: jrnl
|
||||
google_analytics: ['UA-153567313-1', 'jrnl.sh']
|
||||
theme:
|
||||
name: readthedocs
|
||||
custom_dir: docs/theme
|
||||
|
|
Loading…
Add table
Reference in a new issue