11 lines
294 B
Python
11 lines
294 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
from django.conf import settings
|
|
|
|
settings.THUMBNAIL_ALIASES = {
|
|
'': {
|
|
'thumbnail': {'size': (300, 200), 'crop': True},
|
|
'hero': {'size': (700, 466), 'crop': True},
|
|
'large': {'size': (1920, 1920), 'crop': False},
|
|
},
|
|
} |