Changed thumbnail/hero images size to cropped 3:2 aspect ratio.

This commit is contained in:
Marcus Scholz 2020-09-10 07:42:20 +02:00
parent 26e257fe96
commit e08f8f60f2

View File

@ -144,8 +144,8 @@ LOGIN_URL = reverse_lazy('login')
THUMBNAIL_ALIASES = {
'': {
'thumbnail': {'size': (300, 300), 'crop': False},
'hero': {'size': (700, 700), 'crop': False},
'thumbnail': {'size': (300, 200), 'crop': True},
'hero': {'size': (700, 466), 'crop': True},
'large': {'size': (1920, 1920), 'crop': False},
},
}