Thank you for a quick reply!
Here you go:
{% assign html_class = ‘no-js’ | append: ’ ’ | append: template %}
{% assign cdn = ‘https://cdnjs.cloudflare.com/ajax/libs/’ %}
{% if template contains ‘.’ %}
{% assign template_classes = template | split: ‘.’ %}
{% assign template_classes_handled = template | replace: ‘.’, ‘-’ %}
{% assign html_class = template_classes[0] | append: ’ ’ | append: template_classes_handled %}
{% endif %}
{% if template contains ‘/’ %}
{% assign template_classes = template | split: ‘/’ %}
{% assign template_classes_handled = template | replace: ‘/’, ‘-’ %}
{% assign html_class = template_classes[0] | append: ’ ’ | append: template_classes_handled %}
{% endif %}
{% assign page_title_handle = page_title | handle %}
{% assign html_class = html_class | append: ’ ’ | append: page_title_handle %}
{% assign template_type = template %}
{% if template contains ‘.’ %}
{% assign template_parts = template | split: ‘.’ %}
{% assign template_type = template_parts[0] %}
{% endif %}
{% assign seo_title = ‘password_page.general.seo_title’ | t: shop_name: shop.name %}
{% render ‘meta’, template_type: template_type, seo_title: seo_title %}
{% render ‘meta-social’, template_type: template_type %}
{% render ‘preload-fonts’ %}
{{ content_for_header }}
{{ ‘normalize/3.0.3/normalize.min.css’ | prepend: cdn | stylesheet_tag }}
{{ ‘theme-vendor.css’ | asset_url | stylesheet_tag }}
{{ ‘theme.css’ | asset_url | stylesheet_tag }}
{{ ‘theme-custom.css’ | asset_url | stylesheet_tag }}
{{ ‘font-awesome/4.7.0/css/font-awesome.min.css’ | prepend: cdn | stylesheet_tag }}
{% render ‘lazysizes’, cdn: cdn %}
{% render ‘theme-js-config’ %}
{{ ‘modernizr/2.8.3/modernizr.min.js’ | prepend: cdn | script_tag }}
{{ ‘lodash.js/4.17.4/lodash.min.js’ | prepend: cdn | script_tag }}
{{ ‘jquery/3.1.1/jquery.min.js’ | prepend: cdn | script_tag }}
{{ ‘velocity/1.3.1/velocity.min.js’ | prepend: cdn | script_tag }}
{{ ‘jquery-cookie/1.4.1/jquery.cookie.min.js’ | prepend: cdn | script_tag }}
{{ ‘theme-vendor.js’ | asset_url | script_tag }}
{{ ‘shopify_common.js’ | shopify_asset_url | script_tag }}
{% render ‘facebook-sdk’ %}
{{ content_for_layout }}
{{ ‘/services/javascripts/currencies.js’ | script_tag }}
{{ ‘jquery.currencies.min.js’ | asset_url | script_tag }}
{{ ‘theme.js’ | asset_url | script_tag }}
{{ ‘theme-custom.js’ | asset_url | script_tag }}