Переглянути джерело

minor update

pull/141/head
abhidj0090 4 роки тому
джерело
коміт
f97f0bfc8a

+ 1
- 3
assets/js/script.js Переглянути файл

@@ -141,15 +141,13 @@ jQuery(function ($) {
});
function downloadEvent(){
var subject = $('#subject').val();
var description = $('#cl-description').val();
var description = $('#description').val();
var location = $('#location').val();
var begin = $('#start-date').val();
var end = $('#end-date').val();
var filename = $('#filename').val();
if(filename==='')
filename= subject;
if(description==='')
description = $('#description').val();
var cal = ics();
cal.addEvent(subject, description, location, begin, end);
//cal.addEvent(subject, description, location, begin, end); // yes, you can have multiple events :-)

+ 0
- 1
layouts/events/single.html Переглянути файл

@@ -43,7 +43,6 @@
{{if not .Params.disable_download}}
<div class="col-lg-8 offset-lg-2">
<input type="hidden" id="subject" value="{{.Title }}"/>
<input type="hidden" id="cl-description" value="{{ .Params.calendar_description }}"/>
<input type="hidden" id="description" value="{{ .Content }}"/>
<input type="hidden" id="location" value="{{.Params.location }}"/>
<input type="hidden" id="start-date" value="{{.Params.event_start_date }}"/>

+ 3
- 3
layouts/events/upcoming.html Переглянути файл

@@ -1,10 +1,10 @@
<article class="col-lg-4 col-md-6 col-12 clearfix wow fadeInUp mb-4" data-wow-duration="500ms">
<div class="post-block">
<div class="media-wrapper">
{{ with .Params.Image_webp }}
<img class="img-fluid lozad" data-src="{{ .Params.Image_webp | absURL }}"
{{ with .Params.image_webp }}
<img class="img-fluid lozad" data-src="{{ .Params.image_webp | absURL }}"
onerror="this.onerror=null;
this.src='{{ .Params.Image | absURL }}'"
this.src='{{ .Params.image | absURL }}'"
>
{{ end }}
</div>

Завантаження…
Відмінити
Зберегти