__copyright__ = "Copyright 2017 Birkbeck, University of London"
__author__ = "Martin Paul Eve & Andy Byers"
__license__ = "AGPL v3"
__maintainer__ = "Birkbeck Centre for Technology and Publishing"

from django.urls import re_path
from core.homepage_elements.preprints import views

urlpatterns = [
    # Featured Articles
    re_path(r"^$", views.preprints, name="preprints"),
]
