Skip to content

Instantly share code, notes, and snippets.

@mekicha
Last active December 11, 2017 19:51
Show Gist options
  • Save mekicha/34698c8ec77c56331b6bf0b857b993ab to your computer and use it in GitHub Desktop.
Save mekicha/34698c8ec77c56331b6bf0b857b993ab to your computer and use it in GitHub Desktop.
Add bootstrap and jquery to a pug/jade project via Yandex CDN
doctype html
html
head
title= title
link(rel='stylesheet' href='https://yastatic.net/bootstrap/3.3.6/css/bootstrap.min.css')
link(rel='stylesheet', href='/stylesheets/style.css')
body
block content
script(src='https://yastatic.net/jquery/3.1.1/jquery.min.js')
script(src='https://yastatic.net/bootstrap/3.3.6/js/bootstrap.min.js')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment