mirror of
https://github.com/RPCS3/rpcs3-www.git
synced 2024-11-23 18:19:39 +00:00
3931c9a4db
Currently, blog is just an empty app.
16 lines
449 B
Python
16 lines
449 B
Python
from django.conf.urls import patterns, include, url
|
|
|
|
from django.contrib import admin
|
|
admin.autodiscover()
|
|
|
|
urlpatterns = patterns('',
|
|
# Public
|
|
url(r'^$', 'website.home.views.home', name='home'),
|
|
url(r'^contact/$', 'website.home.views.contact', name='contact'),
|
|
url(r'^compat/', include('website.compat.urls')),
|
|
url(r'^blog/', include('website.blog.urls')),
|
|
|
|
# Administration
|
|
url(r'^admin/', include(admin.site.urls)),
|
|
)
|