Skip to content

Commit 64cc768

Browse files
Upload
0 parents  commit 64cc768

File tree

1,241 files changed

+102869
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,241 files changed

+102869
-0
lines changed

.gitattributes

+194
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,194 @@
1+
## GITATTRIBUTES FOR WEB PROJECTS
2+
#
3+
# These settings are for any web project.
4+
#
5+
# Details per file setting:
6+
# text These files should be normalized (i.e. convert CRLF to LF).
7+
# binary These files are binary and should be left untouched.
8+
#
9+
# Note that binary is a macro for -text -diff.
10+
######################################################################
11+
12+
## AUTO-DETECT
13+
## Handle line endings automatically for files detected as
14+
## text and leave all files detected as binary untouched.
15+
## This will handle all files NOT defined below.
16+
* text=auto
17+
18+
## SOURCE CODE
19+
*.bat text eol=crlf
20+
*.coffee text
21+
*.css text
22+
*.htm text
23+
*.html text
24+
*.inc text
25+
*.ini text
26+
*.js text
27+
*.json text
28+
*.jsx text
29+
*.less text
30+
*.od text
31+
*.onlydata text
32+
*.php text
33+
*.pl text
34+
*.py text
35+
*.rb text
36+
*.sass text
37+
*.scm text
38+
*.scss text
39+
*.sh text eol=lf
40+
*.sql text
41+
*.styl text
42+
*.tag text
43+
*.ts text
44+
*.tsx text
45+
*.xml text
46+
*.xhtml text
47+
48+
## DOCKER
49+
*.dockerignore text
50+
Dockerfile text
51+
52+
## DOCUMENTATION
53+
*.markdown text
54+
*.md text
55+
*.mdwn text
56+
*.mdown text
57+
*.mkd text
58+
*.mkdn text
59+
*.mdtxt text
60+
*.mdtext text
61+
*.txt text
62+
AUTHORS text
63+
CHANGELOG text
64+
CHANGES text
65+
CONTRIBUTING text
66+
COPYING text
67+
copyright text
68+
*COPYRIGHT* text
69+
INSTALL text
70+
license text
71+
LICENSE text
72+
NEWS text
73+
readme text
74+
*README* text
75+
TODO text
76+
77+
## TEMPLATES
78+
*.dot text
79+
*.ejs text
80+
*.haml text
81+
*.handlebars text
82+
*.hbs text
83+
*.hbt text
84+
*.jade text
85+
*.latte text
86+
*.mustache text
87+
*.njk text
88+
*.phtml text
89+
*.tmpl text
90+
*.tpl text
91+
*.twig text
92+
93+
## LINTERS
94+
.babelrc text
95+
.csslintrc text
96+
.eslintrc text
97+
.htmlhintrc text
98+
.jscsrc text
99+
.jshintrc text
100+
.jshintignore text
101+
.prettierrc text
102+
.stylelintrc text
103+
104+
## CONFIGS
105+
*.bowerrc text
106+
*.cnf text
107+
*.conf text
108+
*.config text
109+
.browserslistrc text
110+
.editorconfig text
111+
.gitattributes text
112+
.gitconfig text
113+
.gitignore text
114+
.htaccess text
115+
*.npmignore text
116+
*.yaml text
117+
*.yml text
118+
browserslist text
119+
Makefile text
120+
makefile text
121+
122+
## HEROKU
123+
Procfile text
124+
.slugignore text
125+
126+
## GRAPHICS
127+
*.ai binary
128+
*.bmp binary
129+
*.eps binary
130+
*.gif binary
131+
*.ico binary
132+
*.jng binary
133+
*.jp2 binary
134+
*.jpg binary
135+
*.jpeg binary
136+
*.jpx binary
137+
*.jxr binary
138+
*.pdf binary
139+
*.png binary
140+
*.psb binary
141+
*.psd binary
142+
*.svg text
143+
*.svgz binary
144+
*.tif binary
145+
*.tiff binary
146+
*.wbmp binary
147+
*.webp binary
148+
149+
## AUDIO
150+
*.kar binary
151+
*.m4a binary
152+
*.mid binary
153+
*.midi binary
154+
*.mp3 binary
155+
*.ogg binary
156+
*.ra binary
157+
158+
## VIDEO
159+
*.3gpp binary
160+
*.3gp binary
161+
*.as binary
162+
*.asf binary
163+
*.asx binary
164+
*.fla binary
165+
*.flv binary
166+
*.m4v binary
167+
*.mng binary
168+
*.mov binary
169+
*.mp4 binary
170+
*.mpeg binary
171+
*.mpg binary
172+
*.ogv binary
173+
*.swc binary
174+
*.swf binary
175+
*.webm binary
176+
177+
## ARCHIVES
178+
*.7z binary
179+
*.gz binary
180+
*.jar binary
181+
*.rar binary
182+
*.tar binary
183+
*.zip binary
184+
185+
## FONTS
186+
*.ttf binary
187+
*.eot binary
188+
*.otf binary
189+
*.woff binary
190+
*.woff2 binary
191+
192+
## EXECUTABLES
193+
*.exe binary
194+
*.pyc binary

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
cgi-bin

.htaccess

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# ######################################################################
2+
# # REWRITES #
3+
# ######################################################################
4+
5+
# ----------------------------------------------------------------------
6+
# | Rewrite engine |
7+
# ----------------------------------------------------------------------
8+
<IfModule mod_rewrite.c>
9+
10+
RewriteEngine on
11+
12+
Options +FollowSymlinks
13+
14+
RewriteRule ^static/(.*)$ static/$1 [L,QSA]
15+
16+
RewriteRule ^(.*)$ source/$1
17+
18+
<IfModule mod_rewrite.c>
19+
20+
<IfModule mod_deflate.c>
21+
AddOutputFilterByType DEFLATE text/html text/plain text/css application/json
22+
AddOutputFilterByType DEFLATE text/javascript application/javascript application/x-javascript
23+
AddOutputFilterByType DEFLATE text/xml application/xml text/x-component
24+
<FilesMatch "\.(ttf|otf|eot|svg)$" >
25+
SetOutputFilter DEFLATE
26+
</FilesMatch>
27+
</IfModule>
28+
29+
<ifModule mod_expires.c>
30+
ExpiresActive On
31+
ExpiresDefault "access plus 1 year"
32+
ExpiresByType image/x-icon "access plus 1 year"
33+
ExpiresByType image/jpeg "access plus 1 year"
34+
ExpiresByType image/png "access plus 1 year"
35+
ExpiresByType image/gif "access plus 1 year"
36+
ExpiresByType application/x-shockwave-flash "access plus 1 year"
37+
ExpiresByType text/css "access plus 1 year"
38+
ExpiresByType text/javascript "access plus 1 year"
39+
ExpiresByType application/javascript "access plus 1 year"
40+
ExpiresByType application/x-javascript "access plus 1 year"
41+
ExpiresByType text/html "access plus 1 year"
42+
ExpiresByType application/xhtml+xml "access plus 1 year"
43+
</ifModule>

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Центр трудоустройства и развития карьеры СтГАУ Агрокадры
2+
3+
<a href="stgaujob.ru">stgaujob.ru</a>

0 commit comments

Comments
 (0)