Files
Web-NibblePoker/website/renderers/standalone.py
Herwin Bozet ec905b4735 Added more content, Minor incremental improvements
Update app.py, uuid-generator.yml, and 23 more files...
2025-02-24 21:17:56 +01:00

7 lines
219 B
Python

def get_standalone_common_headers() -> str:
_html = ""
with open("./static/resources/Standalone/nibblepoker.min.css", encoding='utf-8') as f:
_html += "<style>" + f.read() + "</style>"
return _html