shakyShane/jekyll-gulp-sass-browser-sync

Inserting script

Juneko opened this issue · 1 comments

How can I insert script on the index header.
I trying to use font awesome cdn but I can't insert the cdn script on the header.

thank you

_layouts/default.html
<!DOCTYPE html>

<title>{{ page.title }}</title>
    <!-- Custom CSS -->
    <link rel="stylesheet" href="/assets/css/main.css">
    <script src="/assets/js/helper.js"></script>
</head>
<body>
    <div class="container">
        {% include header.html %}
        {% include content-home.html %}
        {% include footer.html %}
    </div>
  <script src="/assets/js/main.js"></script>
</body>
`