mirror of
https://github.com/minoplhy/crappy-reverie.git
synced 2024-11-14 21:36:57 +00:00
commit
14cf39c3c6
15
README.md
15
README.md
@ -23,6 +23,20 @@ This is a plug-and-play Jekyll theme best suited to use on [GitHub Pages](https:
|
|||||||
|---------------------|----------------------|----------------------|
|
|---------------------|----------------------|----------------------|
|
||||||
|![Responsiveness](/images/mobile-demo.png) | ![search](/images/search.png) | ![categories](/images/categories.png) |
|
|![Responsiveness](/images/mobile-demo.png) | ![search](/images/search.png) | ![categories](/images/categories.png) |
|
||||||
|
|
||||||
|
# Table of Contents
|
||||||
|
- [Features overview](#features-overview)
|
||||||
|
- [Using Reverie on GitHub Pages](#using-reverie-on-github-pages)
|
||||||
|
- [1. Fork Reverie to your User Repository](#1-fork-reverie-to-your-user-repository)
|
||||||
|
- [2. Customize and view your site](#2-customize-and-view-your-site)
|
||||||
|
- [3. Publish your first blog post](#3-publish-your-first-blog-post)
|
||||||
|
- [Using Categories in Reverie](#using-categories-in-reverie)
|
||||||
|
- [Pagination](#pagination)
|
||||||
|
- [RSS](#rss)
|
||||||
|
- [Sitemap](#sitemap)
|
||||||
|
- [Emailware](#emailware)
|
||||||
|
- [The name?](#the-name)
|
||||||
|
- [License](#license)
|
||||||
|
|
||||||
## Features overview
|
## Features overview
|
||||||
|
|
||||||
- Clean and minimal design
|
- Clean and minimal design
|
||||||
@ -39,6 +53,7 @@ This is a plug-and-play Jekyll theme best suited to use on [GitHub Pages](https:
|
|||||||
- Disqus commenting
|
- Disqus commenting
|
||||||
- Social media icons
|
- Social media icons
|
||||||
- Google Analytics integration
|
- Google Analytics integration
|
||||||
|
- Supports [Google Analytics 4](https://support.google.com/analytics/answer/10089681?hl=en)
|
||||||
- Fuzzy search across blog posts
|
- Fuzzy search across blog posts
|
||||||
- Blog with pagination
|
- Blog with pagination
|
||||||
- Categorize posts out-of-the box
|
- Categorize posts out-of-the box
|
||||||
|
@ -43,6 +43,9 @@ disqus:
|
|||||||
# Enter your Google Analytics web tracking code (e.g. UA-2110908-2) to activate tracking
|
# Enter your Google Analytics web tracking code (e.g. UA-2110908-2) to activate tracking
|
||||||
google_analytics: UA-43339302-11
|
google_analytics: UA-43339302-11
|
||||||
|
|
||||||
|
# For newer "GA4" analytics, use the following instead of the "UA" entry above
|
||||||
|
#google_analytics_ga4: G-GABC1DEFG
|
||||||
|
|
||||||
# Your website URL (e.g. http://amitmerchant1990.github.io or http://www.amitmerchant.com)
|
# Your website URL (e.g. http://amitmerchant1990.github.io or http://www.amitmerchant.com)
|
||||||
# Used for Sitemap.xml and your RSS feed
|
# Used for Sitemap.xml and your RSS feed
|
||||||
url: http://www.amitmerchant.com/reverie
|
url: http://www.amitmerchant.com/reverie
|
||||||
|
9
_includes/analytics_head.html
Normal file
9
_includes/analytics_head.html
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{% if site.google_analytics_ga4 %}
|
||||||
|
<script async src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics_ga4 }}"></script>
|
||||||
|
<script>
|
||||||
|
window.dataLayer = window.dataLayer || [];
|
||||||
|
function gtag(){dataLayer.push(arguments);}
|
||||||
|
gtag('js', new Date());
|
||||||
|
gtag('config', '{{ site.google_analytics_ga4 }}');
|
||||||
|
</script>
|
||||||
|
{% endif %}
|
@ -23,4 +23,3 @@
|
|||||||
<meta property="og:image" content="{{ site.url }}{{ site.avatar }}"/>
|
<meta property="og:image" content="{{ site.url }}{{ site.avatar }}"/>
|
||||||
<meta property="twitter:image" content="{{ site.url }}{{ site.avatar }}"/>
|
<meta property="twitter:image" content="{{ site.url }}{{ site.avatar }}"/>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<meta property="og:site_name" content="Amit Merchant - Software Engineer"/>
|
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
|
|
||||||
<meta name="theme-color" content="#000000">
|
<meta name="theme-color" content="#000000">
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="{{ site.baseurl }}/images/favicon-32x32.png">
|
<link rel="icon" type="image/png" sizes="32x32" href="{{ site.baseurl }}/images/favicon-32x32.png">
|
||||||
|
{% include analytics_head.html %}
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
Loading…
Reference in New Issue
Block a user