9 lines
356 B
Python
9 lines
356 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>"
|
|
with open("./static/resources/NibblePoker/css/extra.css", encoding='utf-8') as f:
|
|
_html += "<style>" + f.read() + "</style>"
|
|
return _html
|