You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.4 KiB
HTML
50 lines
1.4 KiB
HTML
|
|
<script>
|
|
$(document).ready(function(){
|
|
var uri = '{{system.context}}/api/info/about'
|
|
var http = HttpClient.instance()
|
|
|
|
http.get(uri,function(x){
|
|
_info = JSON.parse(x.responseText)
|
|
Object.keys(_info).forEach(_id=>{
|
|
try{
|
|
var value = _info[_id]
|
|
$('.'+_id).html(value.replace(/\n/g,'<br>'))
|
|
}catch(e){
|
|
|
|
}
|
|
})
|
|
var _layout = {on:{load:{'visit-us':['www/html/visit-us.html']}}}
|
|
// bootup.init('',_layout)
|
|
qcms.page.loader('.legal',_layout)
|
|
|
|
})
|
|
|
|
|
|
})
|
|
</script>
|
|
<style>.legal {height:75vh; line-height: 1.5; font-family:sans-serif; font-size:14px; font-weight:lighter}</style>
|
|
<div class="legal">
|
|
<div style="background-color: #f3f3f3;padding:8px;">
|
|
<span class="author bold"></span>, version <span class="version"></span>
|
|
</div>
|
|
<p>
|
|
|
|
<div style="display:grid; grid-template-columns: 52% 48%; gap:8px;">
|
|
<div>
|
|
<h3>MIT License</h3>
|
|
<div class="license"></div>
|
|
</div>
|
|
<div>
|
|
<h3>Supported Databases</h3>
|
|
<div class="supported"></div>
|
|
</div>
|
|
</div>
|
|
|
|
</p>
|
|
<p>
|
|
<div style="border-top:4px dotted #CAD5E0;"></div>
|
|
<br>
|
|
<div id="visit-us" align="center"></div>
|
|
</p>
|
|
</div> |