Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/podgrab/commit/60b33e6e99b87769693efeee9ecdb0efdad0d806
You should set ROOT_URL correctly, otherwise the web may not work correctly.
5 changed files with
10 additions and
2 deletions
@ -51,7 +51,7 @@ hr{
< div class = "podcasts row" >
< div class = "columns two" >
< img class= "u-full-width" src = "{{ .Image }}" alt = "{{ .Title }}" >
< img onerror= "onImageError(this)" class= "u-full-width" src = "{{ .Image }}" alt = "{{ .Title }}" >
< / div >
< div class = "columns ten" >
@ -42,7 +42,7 @@
{{range .podcasts}}
< div class = "podcasts row" id = "podcast-{{ .ID }}" >
< div class = "columns two" >
< img class= "u-full-width" src = "{{ .Image }}" alt = "{{ .Title }}" >
< img onerror= "onImageError(this)" class= "u-full-width" src = "{{ .Image }}" alt = "{{ .Title }}" >
< / div >
< div class = "columns ten" >
< a style = "text-decoration: none;" href = "/podcasts/{{ .ID }}/view" > < h3 > {{.Title}}< / h3 > < / a >
@ -0,0 +1,3 @@
{{define "podcastlist"}}
{{end}}
@ -5,5 +5,10 @@
< script >
Vue.use(Toasted)
function onImageError(image){
image.onerror = "";
image.src = "/webassets/blank.png";
return true;
}
< / script >
{{end}}
Width:
|
Height:
|
Size: 19 KiB