Skip to content

Commit 2bee5f5

Browse files
committed
Set up initial files
1 parent 76245bf commit 2bee5f5

27 files changed

+2592
-21
lines changed

.editorconfig

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
charset = utf-8
7+
indent_size = 4
8+
indent_style = space
9+
insert_final_newline = true
10+
trim_trailing_whitespace = true
11+
12+
[*.md]
13+
trim_trailing_whitespace = false

.gitattributes

-21
Original file line numberDiff line numberDiff line change
@@ -1,22 +1 @@
1-
# Auto detect text files and perform LF normalization
21
* text=auto
3-
4-
# Custom for Visual Studio
5-
*.cs diff=csharp
6-
*.sln merge=union
7-
*.csproj merge=union
8-
*.vbproj merge=union
9-
*.fsproj merge=union
10-
*.dbproj merge=union
11-
12-
# Standard to msysgit
13-
*.doc diff=astextplain
14-
*.DOC diff=astextplain
15-
*.docx diff=astextplain
16-
*.DOCX diff=astextplain
17-
*.dot diff=astextplain
18-
*.DOT diff=astextplain
19-
*.pdf diff=astextplain
20-
*.PDF diff=astextplain
21-
*.rtf diff=astextplain
22-
*.RTF diff=astextplain

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Include your project-specific ignores in this file
2+
# Read about how to use .gitignore: https://help.github.com/articles/ignoring-files
3+
4+
# Ignore Sublime Text project files
5+
*.sublime-project

404.html

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Page Not Found</title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<style>
8+
9+
* {
10+
line-height: 1.2;
11+
margin: 0;
12+
}
13+
14+
html {
15+
color: #888;
16+
display: table;
17+
font-family: sans-serif;
18+
height: 100%;
19+
text-align: center;
20+
width: 100%;
21+
}
22+
23+
body {
24+
display: table-cell;
25+
vertical-align: middle;
26+
margin: 2em auto;
27+
}
28+
29+
h1 {
30+
color: #555;
31+
font-size: 2em;
32+
font-weight: 400;
33+
}
34+
35+
p {
36+
margin: 0 auto;
37+
width: 280px;
38+
}
39+
40+
@media only screen and (max-width: 280px) {
41+
42+
body, p {
43+
width: 95%;
44+
}
45+
46+
h1 {
47+
font-size: 1.5em;
48+
margin: 0 0 0.3em;
49+
}
50+
51+
}
52+
53+
</style>
54+
</head>
55+
<body>
56+
<h1>Page Not Found</h1>
57+
<p>Sorry, but the page you were trying to view does not exist.</p>
58+
</body>
59+
</html>
60+
<!-- IE needs 512+ bytes: http://blogs.msdn.com/b/ieinternals/archive/2010/08/19/http-error-pages-in-internet-explorer.aspx -->

apple-touch-icon.png

3.87 KB
Loading

browserconfig.xml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!-- Please read: http://msdn.microsoft.com/en-us/library/ie/dn455106.aspx -->
3+
<browserconfig>
4+
<msapplication>
5+
<tile>
6+
<square70x70logo src="tile.png"/>
7+
<square150x150logo src="tile.png"/>
8+
<wide310x150logo src="tile-wide.png"/>
9+
<square310x310logo src="tile.png"/>
10+
</tile>
11+
</msapplication>
12+
</browserconfig>

crossdomain.xml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?xml version="1.0"?>
2+
<!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">
3+
<cross-domain-policy>
4+
<!-- Read this: https://www.adobe.com/devnet/articles/crossdomain_policy_file_spec.html -->
5+
6+
<!-- Most restrictive policy: -->
7+
<site-control permitted-cross-domain-policies="none"/>
8+
9+
<!-- Least restrictive policy: -->
10+
<!--
11+
<site-control permitted-cross-domain-policies="all"/>
12+
<allow-access-from domain="*" to-ports="*" secure="false"/>
13+
<allow-http-request-headers-from domain="*" headers="*" secure="false"/>
14+
-->
15+
</cross-domain-policy>

0 commit comments

Comments
 (0)