jcg00v commited on
Commit
ecb400b
1 Parent(s): 7bf6567

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -175,14 +175,14 @@ def layout(*args):
175
 
176
 
177
  def footer():
178
- logo_path = Path(__file__).with_name("vocali_logo.jpg").parent.absolute()
179
- funding_path = Path(__file__).with_name("logo_funding.png").parent.absolute()
180
 
181
  myargs = [
182
  "Made in ",
183
  image(str(logo_path), width=px(50), height=px(50)),
184
  link("https://vocali.net/", "VÓCALI"),
185
- "with funding ",
186
  image(str(funding_path), height=px(50), width=px(200)),
187
  br(),
188
  "This work was funded by the Spanish Government, the Spanish Ministry of Economy and Digital Transformation through the Digital Transformation through the 'Recovery, Transformation and Resilience Plan' and also funded by the European Union NextGenerationEU/PRTR through the research project 2021/C005/0015007",
 
175
 
176
 
177
  def footer():
178
+ logo_path = Path(__file__).with_name("vocali_logo.jpg").parent.absolute() + "/vocali_logo.jpg"
179
+ funding_path = Path(__file__).with_name("logo_funding.png").parent.absolute() + "/logo_funding.png"
180
 
181
  myargs = [
182
  "Made in ",
183
  image(str(logo_path), width=px(50), height=px(50)),
184
  link("https://vocali.net/", "VÓCALI"),
185
+ " with funding ",
186
  image(str(funding_path), height=px(50), width=px(200)),
187
  br(),
188
  "This work was funded by the Spanish Government, the Spanish Ministry of Economy and Digital Transformation through the Digital Transformation through the 'Recovery, Transformation and Resilience Plan' and also funded by the European Union NextGenerationEU/PRTR through the research project 2021/C005/0015007",