Download link in search results and related cosmetic changes
This commit is contained in:
parent
ee275758d5
commit
0923a26853
@ -121,9 +121,9 @@ class extractData:
|
|||||||
for tag in appInfo["tags"]:
|
for tag in appInfo["tags"]:
|
||||||
html += '<li>' + tag + '</li>\n'
|
html += '<li>' + tag + '</li>\n'
|
||||||
html += (
|
html += (
|
||||||
'</ul>\n</div>\n<a href="' +
|
'</ul>\n</div>\n<h2 id="downloadButton"><a href="' +
|
||||||
str(bundlesDir + pathName + '.xo') +
|
str(bundlesDir + pathName + '.xo') +
|
||||||
'"><h2>Download<h2></a>\n</body>\n</html>'
|
'">Download</a></h2>\n<br>\n</body>\n</html>'
|
||||||
)
|
)
|
||||||
|
|
||||||
WriteTextFiles(
|
WriteTextFiles(
|
||||||
|
@ -49,11 +49,11 @@ h1 {
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
#color1 {
|
#downloadButton a {
|
||||||
color: #0c007e;
|
color: Crimson;
|
||||||
}
|
}
|
||||||
|
|
||||||
#color1 a:hover {
|
#downloadButton a:hover {
|
||||||
color: DarkGoldenRod;
|
color: DarkGoldenRod;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -43,7 +43,9 @@ var search = {
|
|||||||
var html = '<hr><h1><a href="./app/'+app.name+'.html">'+app.name+'</a></h1>\n<p><img src="./icons/'+app.name+'.svg" style="max-width: 250px"></img></p>\n<div id=summary><h2>Summary</h2>\n<p>'+app.summary+'</p>\n</div>\n<div id=description><h2>Description</h2>\n<p>'+app.description+'</p>\n</div>\n<div id=tags><h2>Tags</h2>\n<ul>\n';
|
var html = '<hr><h1><a href="./app/'+app.name+'.html">'+app.name+'</a></h1>\n<p><img src="./icons/'+app.name+'.svg" style="max-width: 250px"></img></p>\n<div id=summary><h2>Summary</h2>\n<p>'+app.summary+'</p>\n</div>\n<div id=description><h2>Description</h2>\n<p>'+app.description+'</p>\n</div>\n<div id=tags><h2>Tags</h2>\n<ul>\n';
|
||||||
for (var tag of app.tags)
|
for (var tag of app.tags)
|
||||||
html += '<li>'+ tag +'</li>\n';
|
html += '<li>'+ tag +'</li>\n';
|
||||||
html += '</ul>\n</div>\n';
|
html += '</ul>\n</div>\n<h2 id="downloadButton"><a href="' +
|
||||||
|
'./bundles/' + app.name + '.xo' +
|
||||||
|
'">Download</a></h2>\n';
|
||||||
return html;
|
return html;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user