Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created October 10, 2019 00:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/be8c3b5743e219af5ae7d5a9ad2b2778 to your computer and use it in GitHub Desktop.
Save parzibyte/be8c3b5743e219af5ae7d5a9ad2b2778 to your computer and use it in GitHub Desktop.
"""
Estas dos rutas son para servir el CSS y los iconos
"""
@app.route('/css/<path:path>')
def send_css(path):
return send_from_directory('css', path)
@app.route('/webfonts/<path:path>')
def send_webfont(path):
return send_from_directory('webfonts', path)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment