Commit 27eb190 1 parent 28dd4ba commit 27eb190 Copy full SHA for 27eb190
File tree 2 files changed +21
-2
lines changed
2 files changed +21
-2
lines changed Original file line number Diff line number Diff line change @@ -346,23 +346,34 @@ vendors:
346
346
jquery :
347
347
348
348
# Internal version: 2.1.5
349
+ # http://fancyapps.com/fancybox/
349
350
fancybox :
351
+ fancybox_css :
350
352
351
353
# Internal version: 1.0.6
354
+ # https://github.com/ftlabs/fastclick
352
355
fastclick :
353
356
354
357
# Internal version: 1.9.7
358
+ # https://github.com/tuupola/jquery_lazyload
355
359
lazyload :
356
360
357
361
# Internal version: 1.2.1
362
+ # http://VelocityJS.org
358
363
velocity :
359
364
360
365
# Internal version: 1.2.1
366
+ # http://VelocityJS.org
361
367
velocity_ui :
362
368
363
369
# Internal version: 0.7.9
370
+ # https://faisalman.github.io/ua-parser-js/
364
371
ua_parser :
365
372
373
+ # Internal version: 4.4.0
374
+ # http://fontawesome.io/
375
+ fontawesome :
376
+
366
377
367
378
# Assets
368
379
css : css
Original file line number Diff line number Diff line change 24
24
25
25
26
26
{% if theme.fancybox %}
27
- <link href="{{ url_for(theme.vendors._internal) }}/fancybox/source/jquery.fancybox.css?v=2.1.5" rel="stylesheet" type="text/css"/>
27
+ {% set fancybox_css_uri = url_for(theme.vendors._internal + '/fancybox/source/jquery.fancybox.css?v=2.1.5') %}
28
+ {% if theme.vendors.fancybox_css %}
29
+ {% set fancybox_css_uri = theme.vendors.fancybox_css %}
30
+ {% endif %}
31
+ <link href="{{ fancybox_css_uri }}" rel="stylesheet" type="text/css" />
28
32
{% endif %}
29
33
30
34
{% include "./head/external-fonts.swig" %}
31
35
32
- <link href="{{ url_for(theme.vendors._internal) }}/font-awesome/css/font-awesome.min.css?v=4.4.0" rel="stylesheet" type="text/css" />
36
+ {% set font_awesome_uri = url_for(theme.vendors._internal + '/font-awesome/css/font-awesome.min.css?v=4.4.0') %}
37
+ {% if theme.vendors.fontawesome %}
38
+ {% set font_awesome_uri = theme.vendors.fontawesome %}
39
+ {% endif %}
40
+ <link href="{{ font_awesome_uri }}" rel="stylesheet" type="text/css" />
33
41
34
42
<link href="{{ url_for(theme.css) }}/main.css?v={{ theme.version }}" rel="stylesheet" type="text/css" />
35
43
You can’t perform that action at this time.
0 commit comments