Spaces:
Running
Running
Jhjoon05
commited on
Commit
•
d289953
1
Parent(s):
cf9d62f
updated markdown
Browse files- app.py +1 -1
- ui/htmls.py +9 -5
app.py
CHANGED
@@ -18,7 +18,7 @@ block = gr.Blocks(css=CSS).queue(api_open=False)
|
|
18 |
with block:
|
19 |
with gr.Row():
|
20 |
with gr.Column():
|
21 |
-
gr.Markdown(MARKDOWN)
|
22 |
with gr.Tabs():
|
23 |
with gr.TabItem("File"): # tab1
|
24 |
with gr.Row():
|
|
|
18 |
with block:
|
19 |
with gr.Row():
|
20 |
with gr.Column():
|
21 |
+
gr.Markdown(MARKDOWN,elem_id="md_project")
|
22 |
with gr.Tabs():
|
23 |
with gr.TabItem("File"): # tab1
|
24 |
with gr.Row():
|
ui/htmls.py
CHANGED
@@ -27,12 +27,16 @@ CSS = """
|
|
27 |
margin-top: 0;
|
28 |
padding-top: 0;
|
29 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
"""
|
31 |
|
32 |
MARKDOWN = """
|
33 |
-
### Whisper Web-UI
|
34 |
-
Latest updates on <a href="https://github.com/jhj0517/Whsiper-WebUI">here.</a> If you found this project useful, please consider supporting it. <br>
|
35 |
-
<a class="bmc-button" href="https://www.buymeacoffee.com/jhj0517" target="_blank">
|
36 |
-
<img src="https://cdn.buymeacoffee.com/buttons/default-orange.png" alt="Buy Me A Coffee" height="30" width="140">
|
37 |
-
</a>
|
38 |
"""
|
|
|
27 |
margin-top: 0;
|
28 |
padding-top: 0;
|
29 |
}
|
30 |
+
|
31 |
+
#md_project a {
|
32 |
+
color: black;
|
33 |
+
text-decoration: none;
|
34 |
+
}
|
35 |
+
#md_project a:hover {
|
36 |
+
text-decoration: underline;
|
37 |
+
}
|
38 |
"""
|
39 |
|
40 |
MARKDOWN = """
|
41 |
+
### [Whisper Web-UI](https://github.com/jhj0517/Whsiper-WebUI)
|
|
|
|
|
|
|
|
|
42 |
"""
|