It is quite possible. Download bootstrap to a separate folder and to the app.yaml file, you have a handler that is static_dir for / bootstrap
application: application-name version: 1 runtime: python api_version: 1 handlers: - url: /stylesheets static_dir: stylesheets - url: /bootstrap static_dir: bootstrap - url: /.* script: todoapp.py
And in all your html files, link to bootstrap like this.
<link href="bootstrap/css/bootstrap.css" rel="stylesheet"> <link href="bootstrap/css/bootstrap-responsive.css" rel="stylesheet"> <script src="bootstrap/js/jquery.js"></script>
You must be kind!
Senthil kumaran
source share