Merge branch 'dev' into feature/profile

remotes/origin/hasaccess
Ivlev Denis 8 years ago
commit faa5c166c7
  1. 4
      apps/course/templates/course/_items.html
  2. 2
      project/templates/lilcity/index.html
  3. 0
      web/build/img/favicon.ico
  4. BIN
      web/build/img/no_cover.png
  5. 2
      web/gulp/tasks/copy.js
  6. BIN
      web/src/img/favicon.ico
  7. BIN
      web/src/img/no_cover.png

@ -7,7 +7,11 @@
{% if course.is_deferred_start %}data-future-course data-future-course-time={{ course.deferred_start_at.timestamp }}{% endif %}
>
<a class="courses__preview" href="{% url 'course' course.id %}?next={{ request.get_full_path }}">
{% if course.cover %}
<img class="courses__pic" src="{{ course.cover.url }}"/>
{% else %}
<img class="courses__pic" src="{% static 'img/no_cover.png' %}"/>
{% endif %}
<div class="courses__view">Подробнее</div>
{% if course.is_featured %}
<div class="courses__label courses__label_fav"></div>

@ -33,7 +33,7 @@
<meta property="fb:admins" content="Facebook numeric ID">
<meta name="csrf-token" content="{{ csrf_token }}">
<link rel="stylesheet" media="all" href={% static "css/app.css" %}>
<link rel="shortcut icon" type="image/png" href="{% static 'favicon.ico' %}"/>
<link rel="shortcut icon" type="image/png" href="{% static 'img/favicon.ico' %}"/>
<script>
var viewportmeta = document.querySelector('meta[name="viewport"]');
if (viewportmeta) {

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 793 B

@ -22,7 +22,7 @@ gulp.task('copy:rootfiles', function() {
gulp.task('copy:img', function() {
return gulp
.src([
config.src.img + '/**/*.{jpg,png,jpeg,svg,gif}',
config.src.img + '/**/*.{jpg,png,jpeg,svg,gif,ico}',
'!' + config.src.img + '/svgo/**/*.*'
])
.pipe(gulp.dest(config.dest.img));

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 793 B

Loading…
Cancel
Save