jekyll-theme-saifas-it 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +3 -0
- data/_config.yml +17 -0
- data/_includes/assets/head.html +17 -0
- data/_includes/assets/libs/highchart.html +4 -0
- data/_includes/assets/libs/lightgallery.html +7 -0
- data/_includes/items/card-activities.html +9 -0
- data/_includes/items/card.html +35 -0
- data/_includes/items/circle-chart.html +3 -0
- data/_includes/items/circles.html +9 -0
- data/_includes/items/contact-link-container.html +8 -0
- data/_includes/items/news-thumbnail.html +21 -0
- data/_includes/page/footer/contact-us-modal.html +79 -0
- data/_includes/page/footer/index.html +21 -0
- data/_includes/page/header/index.html +9 -0
- data/_includes/page/header/logo.html +8 -0
- data/_includes/page/header/navigation.html +5 -0
- data/_includes/page/other/headline.html +3 -0
- data/_includes/page/other/section.html +6 -0
- data/_includes/pages/details.html +56 -0
- data/_includes/plugins/breadcrumbs.html +6 -0
- data/_includes/plugins/iframe.html +1 -0
- data/_includes/plugins/preloader.html +6 -0
- data/_layouts/default.html +26 -0
- data/_layouts/error-404.html +24 -0
- data/_sass/_base.sass +28 -0
- data/_sass/_layout.sass +107 -0
- data/_sass/_variables.sass +28 -0
- data/_sass/buttons.sass +52 -0
- data/_sass/initialize.sass +17 -0
- data/_sass/items/card/styles.sass +97 -0
- data/_sass/items/card-activities/styles.sass +50 -0
- data/_sass/items/circle-chart/styles.sass +6 -0
- data/_sass/items/circles/styles.sass +79 -0
- data/_sass/items/contact-link-container/styles.sass +16 -0
- data/_sass/items/contact-us-modal/styles.sass +122 -0
- data/_sass/items/headline/styles.sass +8 -0
- data/_sass/items/page-section/styles.sass +11 -0
- data/_sass/media-requests.sass +45 -0
- data/_sass/pages/details/index.sass +60 -0
- data/_sass/preloader.sass +57 -0
- data/assets/graphics/fonts/readme.md +0 -0
- data/assets/graphics/images/content/empty/empty-image-224px-224px.png +0 -0
- data/assets/graphics/images/content/empty/empty-showcase-sample-report/empty-image-500px-400px.jpg +0 -0
- data/assets/graphics/images/content/powerbi-icon-960px-1280px.png +0 -0
- data/assets/graphics/images/content/powerbi-icon-report-theme-white-black-900px-900px.png +0 -0
- data/assets/graphics/images/content/saifas-bi-powerbi-custom-visuals/saifas-bi-pbi-cv-calendar-120px-120px.png +0 -0
- data/assets/graphics/images/content/saifas-bi-powerbi-custom-visuals/saifas-bi-pbi-cv-legend-120px-120px.png +0 -0
- data/assets/graphics/images/content/saifas-bi-powerbi-custom-visuals/saifas-bi-pbi-cv-map-120px-120px.png +0 -0
- data/assets/graphics/images/content/saifas-bi-powerbi-custom-visuals/saifas-bi-pbi-cv-project-120px-120px.png +0 -0
- data/assets/graphics/images/content/saifas-bi-powerbi-custom-visuals/saifas-bi-pbi-cv-table-120px-120px.png +0 -0
- data/assets/graphics/images/content/saifas-bi-powerbi-reports/saifas-bi-pbi-report-company-employees-300px-300px.png +0 -0
- data/assets/graphics/images/content/saifas-bi-powerbi-reports/saifas-bi-pbi-report-legend-for-heatmap-300px-300px.png +0 -0
- data/assets/graphics/images/content/saifas-bi-powerbi-reports/saifas-bi-pbi-report-personal-schedule-300px-300px.png +0 -0
- data/assets/graphics/images/content/saifas-bi-powerbi-reports/saifas-bi-pbi-report-project-road-300px-300px.png +0 -0
- data/assets/graphics/images/content/saifas-bi-powerbi-reports/saifas-bi-pbi-report-world-population-300px-300px.png +0 -0
- data/assets/graphics/images/domain/saifas-bi/backgrounds/about.md +0 -0
- data/assets/graphics/images/domain/saifas-bi/icons/button-icons/about.md +0 -0
- data/assets/graphics/images/domain/saifas-bi/icons/fav-icons/saifas-brand-logo-star-theme-blue-black-256px-256px.ico +0 -0
- data/assets/graphics/images/domain/saifas-bi/icons/launch-shortcut-icons/about.md +0 -0
- data/assets/graphics/images/domain/saifas-bi/logos/saifas-brand-logo-star-theme-blue-black-276px-269px.png +0 -0
- data/assets/graphics/images/readme.md +0 -0
- data/assets/sass/readme.md +0 -0
- data/assets/sass/styles.sass +4 -0
- data/assets/scripts/highchart.js +104 -0
- data/assets/scripts/index.js +50 -0
- data/assets/scripts/lightgallery.js +3 -0
- data/assets/scripts/readme.md +0 -0
- metadata +125 -0
@@ -0,0 +1,104 @@
|
|
1
|
+
Highcharts.setOptions({
|
2
|
+
colors: ['#01BAF2', '#71BF45', '#FAA74B', '#E83535']
|
3
|
+
});
|
4
|
+
Highcharts.chart('container', {
|
5
|
+
credits: {
|
6
|
+
enabled: false
|
7
|
+
},
|
8
|
+
exporting: {
|
9
|
+
enabled: false
|
10
|
+
},
|
11
|
+
chart: {
|
12
|
+
plotBackgroundColor: null,
|
13
|
+
plotBorderWidth: null,
|
14
|
+
plotShadow: false,
|
15
|
+
type: 'pie',
|
16
|
+
height: 600,
|
17
|
+
width: 600,
|
18
|
+
responsive: {
|
19
|
+
rules: {
|
20
|
+
condition: {
|
21
|
+
maxHeight: 600,
|
22
|
+
maxWidth: 600,
|
23
|
+
minHeight: 200,
|
24
|
+
minWidth: 200
|
25
|
+
},
|
26
|
+
chartOptions: {
|
27
|
+
legend: {
|
28
|
+
align: 'center',
|
29
|
+
verticalAlign: 'bottom',
|
30
|
+
layout: 'horizontal'
|
31
|
+
},
|
32
|
+
yAxis: {
|
33
|
+
labels: {
|
34
|
+
align: 'left',
|
35
|
+
x: 0,
|
36
|
+
y: -5
|
37
|
+
},
|
38
|
+
title: {
|
39
|
+
text: null
|
40
|
+
}
|
41
|
+
},
|
42
|
+
subtitle: {
|
43
|
+
text: null
|
44
|
+
},
|
45
|
+
credits: {
|
46
|
+
enabled: true
|
47
|
+
}
|
48
|
+
}
|
49
|
+
}
|
50
|
+
}
|
51
|
+
},
|
52
|
+
title: {
|
53
|
+
text: ''
|
54
|
+
},
|
55
|
+
legend: {
|
56
|
+
// align: 'right',
|
57
|
+
// verticalAlign: 'middle',
|
58
|
+
// layout: 'vertical',
|
59
|
+
// align: 'right',
|
60
|
+
// verticalAlign: 'middle',
|
61
|
+
// layout: 'vertical',
|
62
|
+
itemMarginBottom: 10,
|
63
|
+
itemStyle: {
|
64
|
+
fontSize: 16,
|
65
|
+
color: '#525252',
|
66
|
+
fontFamily: 'Open Sans',
|
67
|
+
fontWeight: 400
|
68
|
+
}
|
69
|
+
},
|
70
|
+
tooltip: {
|
71
|
+
pointFormat: ''
|
72
|
+
},
|
73
|
+
plotOptions: {
|
74
|
+
pie: {
|
75
|
+
allowPointSelect: false,
|
76
|
+
cursor: 'pointer',
|
77
|
+
dataLabels: {
|
78
|
+
enabled: false
|
79
|
+
},
|
80
|
+
showInLegend: true
|
81
|
+
}
|
82
|
+
},
|
83
|
+
series: [{
|
84
|
+
name: 'Composition',
|
85
|
+
colorByPoint: true,
|
86
|
+
data: [{
|
87
|
+
name: 'PowerBI',
|
88
|
+
y: 67,
|
89
|
+
events: {
|
90
|
+
click: () => {document.location.href = "/powerbi/"}
|
91
|
+
},
|
92
|
+
sliced: true
|
93
|
+
}, {
|
94
|
+
name: 'Tableau',
|
95
|
+
y: 13,
|
96
|
+
}, {
|
97
|
+
name: 'Google Data Studio',
|
98
|
+
y: 10
|
99
|
+
}, {
|
100
|
+
name: 'Qlik',
|
101
|
+
y: 10
|
102
|
+
}]
|
103
|
+
}]
|
104
|
+
});
|
@@ -0,0 +1,50 @@
|
|
1
|
+
/// preloader
|
2
|
+
|
3
|
+
window.onload = function () {
|
4
|
+
document.body.classList.add('loaded_hiding');
|
5
|
+
window.setTimeout(function () {
|
6
|
+
document.body.classList.add('loaded');
|
7
|
+
document.body.classList.remove('loaded_hiding');
|
8
|
+
}, 500);
|
9
|
+
}
|
10
|
+
|
11
|
+
|
12
|
+
/// contact form
|
13
|
+
|
14
|
+
$(document).ready(function(){
|
15
|
+
$('.contact-us__btn').on('click', function(e){
|
16
|
+
e.preventDefault();
|
17
|
+
$('#modal').fadeIn(100);
|
18
|
+
$('.modalBody').slideDown(300);
|
19
|
+
|
20
|
+
});
|
21
|
+
$('.modal-close, #modal').on('click', function(e){
|
22
|
+
e.preventDefault();
|
23
|
+
$('.modalBody').slideUp(100);
|
24
|
+
$('#modal').fadeOut(300);
|
25
|
+
});
|
26
|
+
});
|
27
|
+
|
28
|
+
|
29
|
+
/// navbar
|
30
|
+
|
31
|
+
$(window).scroll(function(){
|
32
|
+
var $sections = $('section');
|
33
|
+
$sections.each(function(i,el){
|
34
|
+
var top = $(el).offset().top-100;
|
35
|
+
var bottom = top +$(el).height();
|
36
|
+
var scroll = $(window).scrollTop();
|
37
|
+
var id = $(el).attr('id');
|
38
|
+
if( scroll > top && scroll < bottom){
|
39
|
+
$('a.active').removeClass('active');
|
40
|
+
$('a[href="#'+id+'"]').addClass('active');
|
41
|
+
}
|
42
|
+
})
|
43
|
+
});
|
44
|
+
|
45
|
+
$("nav").on("click","a", function (event) {
|
46
|
+
event.preventDefault();
|
47
|
+
var id = $(this).attr('href'),
|
48
|
+
top = $(id).offset().top;
|
49
|
+
$('body,html').animate({scrollTop: top}, 800);
|
50
|
+
});
|
File without changes
|
metadata
ADDED
@@ -0,0 +1,125 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: jekyll-theme-saifas-it
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- SAIFAS
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2022-08-10 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: jekyll
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '4.2'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '4.2'
|
27
|
+
description:
|
28
|
+
email:
|
29
|
+
- jekyll@saifas.info
|
30
|
+
executables: []
|
31
|
+
extensions: []
|
32
|
+
extra_rdoc_files: []
|
33
|
+
files:
|
34
|
+
- LICENSE.txt
|
35
|
+
- README.md
|
36
|
+
- _config.yml
|
37
|
+
- _includes/assets/head.html
|
38
|
+
- _includes/assets/libs/highchart.html
|
39
|
+
- _includes/assets/libs/lightgallery.html
|
40
|
+
- _includes/items/card-activities.html
|
41
|
+
- _includes/items/card.html
|
42
|
+
- _includes/items/circle-chart.html
|
43
|
+
- _includes/items/circles.html
|
44
|
+
- _includes/items/contact-link-container.html
|
45
|
+
- _includes/items/news-thumbnail.html
|
46
|
+
- _includes/page/footer/contact-us-modal.html
|
47
|
+
- _includes/page/footer/index.html
|
48
|
+
- _includes/page/header/index.html
|
49
|
+
- _includes/page/header/logo.html
|
50
|
+
- _includes/page/header/navigation.html
|
51
|
+
- _includes/page/other/headline.html
|
52
|
+
- _includes/page/other/section.html
|
53
|
+
- _includes/pages/details.html
|
54
|
+
- _includes/plugins/breadcrumbs.html
|
55
|
+
- _includes/plugins/iframe.html
|
56
|
+
- _includes/plugins/preloader.html
|
57
|
+
- _layouts/default.html
|
58
|
+
- _layouts/error-404.html
|
59
|
+
- _sass/_base.sass
|
60
|
+
- _sass/_layout.sass
|
61
|
+
- _sass/_variables.sass
|
62
|
+
- _sass/buttons.sass
|
63
|
+
- _sass/initialize.sass
|
64
|
+
- _sass/items/card-activities/styles.sass
|
65
|
+
- _sass/items/card/styles.sass
|
66
|
+
- _sass/items/circle-chart/styles.sass
|
67
|
+
- _sass/items/circles/styles.sass
|
68
|
+
- _sass/items/contact-link-container/styles.sass
|
69
|
+
- _sass/items/contact-us-modal/styles.sass
|
70
|
+
- _sass/items/headline/styles.sass
|
71
|
+
- _sass/items/page-section/styles.sass
|
72
|
+
- _sass/media-requests.sass
|
73
|
+
- _sass/pages/details/index.sass
|
74
|
+
- _sass/preloader.sass
|
75
|
+
- assets/graphics/fonts/readme.md
|
76
|
+
- assets/graphics/images/content/empty/empty-image-224px-224px.png
|
77
|
+
- assets/graphics/images/content/empty/empty-showcase-sample-report/empty-image-500px-400px.jpg
|
78
|
+
- assets/graphics/images/content/powerbi-icon-960px-1280px.png
|
79
|
+
- assets/graphics/images/content/powerbi-icon-report-theme-white-black-900px-900px.png
|
80
|
+
- assets/graphics/images/content/saifas-bi-powerbi-custom-visuals/saifas-bi-pbi-cv-calendar-120px-120px.png
|
81
|
+
- assets/graphics/images/content/saifas-bi-powerbi-custom-visuals/saifas-bi-pbi-cv-legend-120px-120px.png
|
82
|
+
- assets/graphics/images/content/saifas-bi-powerbi-custom-visuals/saifas-bi-pbi-cv-map-120px-120px.png
|
83
|
+
- assets/graphics/images/content/saifas-bi-powerbi-custom-visuals/saifas-bi-pbi-cv-project-120px-120px.png
|
84
|
+
- assets/graphics/images/content/saifas-bi-powerbi-custom-visuals/saifas-bi-pbi-cv-table-120px-120px.png
|
85
|
+
- assets/graphics/images/content/saifas-bi-powerbi-reports/saifas-bi-pbi-report-company-employees-300px-300px.png
|
86
|
+
- assets/graphics/images/content/saifas-bi-powerbi-reports/saifas-bi-pbi-report-legend-for-heatmap-300px-300px.png
|
87
|
+
- assets/graphics/images/content/saifas-bi-powerbi-reports/saifas-bi-pbi-report-personal-schedule-300px-300px.png
|
88
|
+
- assets/graphics/images/content/saifas-bi-powerbi-reports/saifas-bi-pbi-report-project-road-300px-300px.png
|
89
|
+
- assets/graphics/images/content/saifas-bi-powerbi-reports/saifas-bi-pbi-report-world-population-300px-300px.png
|
90
|
+
- assets/graphics/images/domain/saifas-bi/backgrounds/about.md
|
91
|
+
- assets/graphics/images/domain/saifas-bi/icons/button-icons/about.md
|
92
|
+
- assets/graphics/images/domain/saifas-bi/icons/fav-icons/saifas-brand-logo-star-theme-blue-black-256px-256px.ico
|
93
|
+
- assets/graphics/images/domain/saifas-bi/icons/launch-shortcut-icons/about.md
|
94
|
+
- assets/graphics/images/domain/saifas-bi/logos/saifas-brand-logo-star-theme-blue-black-276px-269px.png
|
95
|
+
- assets/graphics/images/readme.md
|
96
|
+
- assets/sass/readme.md
|
97
|
+
- assets/sass/styles.sass
|
98
|
+
- assets/scripts/highchart.js
|
99
|
+
- assets/scripts/index.js
|
100
|
+
- assets/scripts/lightgallery.js
|
101
|
+
- assets/scripts/readme.md
|
102
|
+
homepage: https://github.com/JekyllGO/saifas-ssg-jekyll-theme-saifas-it
|
103
|
+
licenses:
|
104
|
+
- MIT
|
105
|
+
metadata: {}
|
106
|
+
post_install_message:
|
107
|
+
rdoc_options: []
|
108
|
+
require_paths:
|
109
|
+
- lib
|
110
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
111
|
+
requirements:
|
112
|
+
- - ">="
|
113
|
+
- !ruby/object:Gem::Version
|
114
|
+
version: '0'
|
115
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
116
|
+
requirements:
|
117
|
+
- - ">="
|
118
|
+
- !ruby/object:Gem::Version
|
119
|
+
version: '0'
|
120
|
+
requirements: []
|
121
|
+
rubygems_version: 3.3.7
|
122
|
+
signing_key:
|
123
|
+
specification_version: 4
|
124
|
+
summary: Jekyll theme for SAIFAS IT
|
125
|
+
test_files: []
|