Adding Custom HTML to Your Site Footer - jwplayer/jw-showcase GitHub Wiki

You can override the content in your site's footer by using a script directive containing your own HTML. We recommend only adding basic HTML this way. If you want to add more elaborate code to the footer, edit your source code.

To customize the footer in your site:

  1. Open your Showcase site's index.html file in a text editor.

  2. Paste the following code at the end of the file:

     <script type="text/ng-template" id="views/core/footer.html">
         <div class="jw-footer">
         <p>Now your HTML replaces the footerText value in the config.json file.</p>
         <p>You can also <a href="http://www.jwplayer.com" title="JW Player home page">add a link!</a></p>
         </div>
     </script>
    
  3. Save the file.

  4. Upload the new index.html file to your web server (overwriting the current file).

For more information about AngularJS script directives, see https://docs.angularjs.org/api/ng/directive/script.

⚠️ **GitHub.com Fallback** ⚠️