mirror of https://gitlab.com/mayx/mayx.gitlab.io
Update 4 files
- /assets/css/style.scss - /_layouts/post.html - /_layouts/default.html - /_data/ai-cache.jsonmaster
parent
ebc280932e
commit
d0ce029b94
File diff suppressed because one or more lines are too long
|
@ -29,7 +29,7 @@
|
|||
</script>
|
||||
{% endif %}
|
||||
<script>
|
||||
var lastUpdated = new Date("{{ site.time | date: "%FT%T%z" }}");
|
||||
var lastUpdated = new Date("{{ site.time | date_to_xmlschema }}");
|
||||
var BlogAPI = "https://summary.mayx.eu.org";
|
||||
function getSearchJSON(callback) {
|
||||
var searchData = JSON.parse(localStorage.getItem("blog_" + lastUpdated.valueOf()));
|
||||
|
|
|
@ -12,7 +12,7 @@ layout: default
|
|||
<br /><br />
|
||||
</div>
|
||||
<script>
|
||||
BirthDay = new Date("{{ page.date | date: "%m/%d/%Y" }} 00:00:00");
|
||||
BirthDay = new Date("{{ page.date | date_to_xmlschema }}");
|
||||
today = new Date();
|
||||
timeold = (today.getTime() - BirthDay.getTime());
|
||||
secondsold = Math.floor(timeold / 1000);
|
||||
|
|
|
@ -3,6 +3,11 @@
|
|||
|
||||
@import "{{ site.theme }}";
|
||||
|
||||
a:hover {
|
||||
font-weight: inherit;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.backToTop {
|
||||
display: none;
|
||||
width: 18px;
|
||||
|
|
Loading…
Reference in New Issue