Skip to content
This repository has been archived by the owner on Dec 11, 2021. It is now read-only.

Latest commit

 

History

History
22 lines (19 loc) · 614 Bytes

html.md

File metadata and controls

22 lines (19 loc) · 614 Bytes

Html

Performance

Append links to #head with [[ERB]]

<script>
  (function() {
      var cssMain = document.createElement('link');
      cssMain.href = '<%= absolute_url "styles/index.css" %>';
      cssMain.rel = 'stylesheet';
      cssMain.type = 'text/css';
      document.getElementsByTagName('head')[0].appendChild(cssMain);
      var cssFa = document.createElement('link');
      cssFa.href = '<%= absolute_url "styles/syntax.css" %>';
      cssFa.rel = 'stylesheet';
      cssFa.type = 'text/css';
      document.getElementsByTagName('head')[0].appendChild(cssFa);
  })();
</script>