Get Groundhog
You can simply download Groundhog CSS and JS files and include them into your pages.
To use the files put the CSS into the <head>
of your page like this:
<link rel="stylesheet" href="main.css" />
And include the JS at the end of the <body>
tag of your page:
<body>
... all your content
<script type="text/javascript" src="main.js"></script>
</body>
CDN usage
We uploaded everything to our Dynatrace CDN, use it like that:
CSS goes in the <head>
<link rel="stylesheet" href="//assets.dynatrace.com/groundhog/v6.1.2/css/main.css" />
JS goes at the end of the <body>
tag of your page:
<body>
... all your content
<script type="text/javascript" src="//assets.dynatrace.com/groundhog/v6.1.2/js/main.js"></script>
</body>
Install via npm
Groundhog is available on npm:
npm install --save @dynatrace/groundhog
Custom component builds
Coming soon