UPGRADE YOUR SKILLS: Learn advanced Swift and SwiftUI on Hacking with Swift+! >>

Adding script in Publish website

Forums > Swift

@BSM  

Hi,

i am building a website using Publish and swift. As I want to have some analytics, I have signed up for google analytics, and got some scripts.

my questions is, how do I add the script to my site, and better, where should I add it so thatvit will cover my whole website?

thx!

staySafeAndHealty

3      

.head node accepts customElements and you should add it there, eg.

.head(for: location, on: context.site, stylesheetPaths: [Path("styles.css?v=13")], customElements: [
                .raw(
                    """
                <!-- Global site tag (gtag.js) - Google Analytics -->
                <script async src="https://www.googletagmanager.com/gtag/js?id=UA-xxxxxxxxx-1"></script>
                <script>
                  window.dataLayer = window.dataLayer || [];
                  function gtag(){dataLayer.push(arguments);}
                  gtag('js', new Date());

                  gtag('config', 'UA-xxxxxxxx-1');
                </script>
                """)
            ]),

4      

@BSM  

thx @artrmz !! do I need to add that script to all .heads? or only in the makeIndexHTML function?

3      

All the pages should have .head node as it includes styles etc so yeah, add it to all. Of course, the best idea would be to create a common .head and reuse it everwhere.

3      

@BSM  

how should I create a reusable .head? I should just add a .head to all makeXHTML functions in my theme, correct?

3      

Well, you can eg. create a function or computed variable that will return .head with all the things you need for each page.

3      

BUILD THE ULTIMATE PORTFOLIO APP Most Swift tutorials help you solve one specific problem, but in my Ultimate Portfolio App series I show you how to get all the best practices into a single app: architecture, testing, performance, accessibility, localization, project organization, and so much more, all while building a SwiftUI app that works on iOS, macOS and watchOS.

Get it on Hacking with Swift+

Sponsor Hacking with Swift and reach the world's largest Swift community!

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.