mirror of
https://github.com/Eugeny/tabby-web.git
synced 2025-06-22 04:10:08 +00:00
.
This commit is contained in:
parent
6640c54437
commit
879af5ef3e
@ -3,7 +3,7 @@ html
|
|||||||
head
|
head
|
||||||
base(href='/')
|
base(href='/')
|
||||||
meta(name='viewport', content='initial-scale=1, minimal-ui, shrink-to-fit=no')
|
meta(name='viewport', content='initial-scale=1, minimal-ui, shrink-to-fit=no')
|
||||||
script(src='/build/index.js', defer)
|
script(src='/static/index.js', defer)
|
||||||
title Tabby
|
title Tabby
|
||||||
body
|
body
|
||||||
app
|
app
|
||||||
|
@ -2,7 +2,7 @@ doctype html
|
|||||||
html.tabby
|
html.tabby
|
||||||
head
|
head
|
||||||
meta(charset='UTF-8')
|
meta(charset='UTF-8')
|
||||||
script(src='/build/terminal.js')
|
script(src='/static/terminal.js')
|
||||||
style#custom-css
|
style#custom-css
|
||||||
style.
|
style.
|
||||||
body { transition: 0.5s background; }
|
body { transition: 0.5s background; }
|
||||||
|
@ -19,7 +19,6 @@ urlpatterns = [
|
|||||||
|
|
||||||
path('terminal', views.TerminalView.as_view()),
|
path('terminal', views.TerminalView.as_view()),
|
||||||
path('app-dist/<version>/<path:path>', views.AppDistView.as_view()),
|
path('app-dist/<version>/<path:path>', views.AppDistView.as_view()),
|
||||||
path('build/<path:path>', views.BuildView.as_view()),
|
|
||||||
path('', include(router.urls)),
|
path('', include(router.urls)),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
from django.conf import settings
|
||||||
|
from django.conf.urls.static import static
|
||||||
from django.contrib import admin
|
from django.contrib import admin
|
||||||
from django.urls import path, include
|
from django.urls import path, include
|
||||||
from .app.urls import urlpatterns
|
from .app.urls import urlpatterns
|
||||||
@ -6,4 +8,4 @@ urlpatterns = [
|
|||||||
path('', include(urlpatterns)),
|
path('', include(urlpatterns)),
|
||||||
path('api/1/auth/social/', include('social_django.urls', namespace='social')),
|
path('api/1/auth/social/', include('social_django.urls', namespace='social')),
|
||||||
path('admin/', admin.site.urls),
|
path('admin/', admin.site.urls),
|
||||||
]
|
] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user