阅读量: 次  文章字数: 242字  阅读时长: 1分钟

RAG

Google Analysis

谷歌分析是谷歌提供的免费网络分析服务,用于跟踪和报告网站流量。将谷歌分析添加到 Jekyll 网站十分简单。登录  谷歌分析  并新建一个媒体资源,以获取网站的跟踪 ID。可在管理 > 媒体资源 > 跟踪信息 > 跟踪代码下找到跟踪 ID。

在 Jekyll 网站上部署谷歌分析,首先在_includes文件夹新建名为google-analytics.html的文件,并写入以下代码:

1
2
3
4
5
6
7
8
<script async src="https://www.googletagmanager.com/gtag/js?id=***"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', '***');
</script>

然后在_config.yml中添加跟踪 ID:

1
2
# Google Analytics
google_analytics: ***

最后添加google-analytics.html到网页,谷歌建议把跟踪代码放在每个页面的<head>中,以确保正确跟踪所有访问。

{%- if jekyll.environment == 'production' -%}
      {%- include google-analytics.html -%}
    {%- endif -%}
    

Reference:link

Comments

2024-07-23