1
0

googlefonts.js 545 B

12345678910111213141516171819
  1. WebFontConfig = {
  2. google: {
  3. families: [
  4. 'Gentium+Basic:400,400italic,700,700italic:latin',
  5. 'Ubuntu+Mono:400,400italic,700,700italic',
  6. 'Yanone+Kaffeesatz:latin',
  7. ]
  8. }
  9. };
  10. (function() {
  11. var wf = document.createElement('script');
  12. wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
  13. '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
  14. wf.type = 'text/javascript';
  15. wf.async = 'true';
  16. var s = document.getElementsByTagName('script')[0];
  17. s.parentNode.insertBefore(wf, s);
  18. })();