1
0
mirror of https://github.com/raseels-repos/golang-saas-starter-kit.git synced 2025-08-08 22:36:41 +02:00

fix registry

This commit is contained in:
Lee Brown
2019-08-06 12:10:47 -08:00
parent a916aa5f46
commit 9418241408
5 changed files with 10 additions and 31 deletions

View File

@@ -119,7 +119,6 @@
}
if (filter_column && filter_value ) {
$( "#dataTable_wrapper thead th" ).each(function( index ) {
//console.log( index + ": " + $( this ).text() );
column_text = $( this ).text().toLowerCase();
column_text = column_text.replace(" ", "_");
if (column_text ==filter_column) {
@@ -127,11 +126,7 @@
}
});
if (filer_column_num ) {
//console.log(filer_column_num);
dtbl.column(filer_column_num).search(filter_value).draw();
//filer_column_num = filer_column_num +1 ;
//console.log($(".dataTables_scrollFootInner tfoot th:nth-child("+filer_column_num+") ").text());
//$(".dataTables_scrollFootInner tfoot th:nth-child("+filer_column_num+") select ").val(filter_value);
}
}
}

View File

@@ -1,16 +1,12 @@
{{ define "partials/site-footer" }}
<footer class="bg-white mt-5 pt-5">
<div class="container mt-5 pt-5">
<div class="row">
<div class="col-sm-9 col-lg-6 mb-7">
<a class="d-inline-flex align-items-center mb-3" href="/" aria-label="Starter Kit for Software-as-a-Service">
<img src="{{ SiteAssetUrl "/images/saas-stater-kit-icon-200x200.png" }}" height="50" alt="Starter Kit for Software-as-a-Service"></a>
<p class="small text-white-70">Our software-as-a-service digitizes your businesses processes to increase performance and efficiency.</p>
</div>
<div class="col-6 col-sm-6 col-lg-3 ml-lg-auto mb-4">
<h3 class="h6">SaaS</h3>
<ul class="list-unstyled">
@@ -41,16 +37,11 @@
<p class="small text-white-70 mb-0">&copy; Copyright 2019 Geeks Accelerator.</p>
</div>
</div>
<div class="row align-items-center">
<div class="col-sm-6 mb-5">
{{ template "partials/buildinfo" . }}
</div>
</div>
</div>
</footer>
{{end}}

View File

@@ -1,14 +1,9 @@
{{ define "partials/site-topbar" }}
<!-- Topbar -->
<nav class="navbar navbar-dark bg-primary topbar navbar-fixed-top shadow" style="position: fixed; right: 0; left: 0; z-index: 1030;">
<a class="my-0 mr-md-auto navbar-brand" href="/">
<img src="{{ SiteAssetUrl "/images/saas-stater-kit-logo-350x100.png"}}" height="30" alt="SaaS Starter Kit">
</a>
<nav class="my-2 my-md-0 mr-md-3">
<a class="p-2 text-white" href="/">Home</a>
<a class="p-2 text-white" href="/pricing">Pricing</a>
@@ -17,12 +12,6 @@
<a class="p-2 text-white" href="/user/login"><i class="far fa-user"></i> Login</a>
</nav>
<a class="btn btn-purple" href="/signup">Sign up</a>
</nav>
<!-- End of Topbar -->
{{ end }}