first commit

This commit is contained in:
编码猿
2024-09-27 01:15:04 +08:00
commit 89004b22d2
47 changed files with 4871 additions and 0 deletions

1
ksAll/views/.pydio Normal file
View File

@@ -0,0 +1 @@
8df6645b-0e4a-447e-84c3-9d8dd3478df6

6
ksAll/views/error.pug Normal file
View File

@@ -0,0 +1,6 @@
extends layout
block content
h1= message
h2= error.status
pre #{error.stack}

14
ksAll/views/index.pug Normal file
View File

@@ -0,0 +1,14 @@
extends layout
block css
link(rel='stylesheet', href='/stylesheets/index.css')
block content
.video
.close x
video(src="", loop, controls, height="100%")
.like 喜欢
ul
block js
script(src="/javascripts/index.js")

12
ksAll/views/layout.pug Normal file
View File

@@ -0,0 +1,12 @@
doctype html
html
head
title= title
link(rel='stylesheet', href='/stylesheets/style.css')
link(rel='stylesheet', href='http://at.alicdn.com/t/font_3359132_azrkp1lj7lc.css')
script(src="https://cdn.bootcss.com/jquery/3.4.1/jquery.min.js")
block css
body
block content
block js

10
ksAll/views/recommend.pug Normal file
View File

@@ -0,0 +1,10 @@
extends layout
block css
link(rel='stylesheet', href='/stylesheets/index.css')
block content
.recommend 相关推荐
block js
script(src="/javascripts/recommend.js")