Skip to content

Commit 08d0adf

Browse files
committed
initial commit
0 parents  commit 08d0adf

File tree

2 files changed

+101
-0
lines changed

2 files changed

+101
-0
lines changed

.gitignore

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
2+
# Created by https://www.gitignore.io/api/macos,intellij
3+
4+
### Intellij ###
5+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
6+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
7+
8+
# User-specific stuff:
9+
.idea/
10+
11+
# CMake
12+
cmake-build-debug/
13+
14+
# Mongo Explorer plugin:
15+
.idea/**/mongoSettings.xml
16+
17+
## File-based project format:
18+
*.iws
19+
20+
## Plugin-specific files:
21+
22+
# IntelliJ
23+
/out/
24+
25+
# mpeltonen/sbt-idea plugin
26+
.idea_modules/
27+
28+
# JIRA plugin
29+
atlassian-ide-plugin.xml
30+
31+
# Cursive Clojure plugin
32+
.idea/replstate.xml
33+
34+
# Crashlytics plugin (for Android Studio and IntelliJ)
35+
com_crashlytics_export_strings.xml
36+
crashlytics.properties
37+
crashlytics-build.properties
38+
fabric.properties
39+
40+
### Intellij Patch ###
41+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
42+
43+
# *.iml
44+
# modules.xml
45+
# .idea/misc.xml
46+
# *.ipr
47+
48+
49+
### macOS ###
50+
*.DS_Store
51+
.AppleDouble
52+
.LSOverride
53+
54+
# Icon must end with two \r
55+
Icon
56+
57+
# Thumbnails
58+
._*
59+
60+
# Files that might appear in the root of a volume
61+
.DocumentRevisions-V100
62+
.fseventsd
63+
.Spotlight-V100
64+
.TemporaryItems
65+
.Trashes
66+
.VolumeIcon.icns
67+
.com.apple.timemachine.donotpresent
68+
69+
# Directories potentially created on remote AFP share
70+
.AppleDB
71+
.AppleDesktop
72+
Network Trash Folder
73+
Temporary Items
74+
.apdisk
75+
76+
# End of https://www.gitignore.io/api/macos,intellij

main.html

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="utf-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
7+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous">
8+
9+
<title>HSE DAY 2017</title>
10+
</head>
11+
12+
<body>
13+
<nav class="navbar navbar-default">
14+
<div class="container">
15+
16+
<div class="collapse navbar-collapse">
17+
<ul class="nav navbar-nav">
18+
<li><a href="hse.html">HSE DAY</a></li>
19+
<li><a href="#"></a></a></li>
20+
21+
</ul>
22+
</div>
23+
</div>
24+
</nav>
25+
</body>

0 commit comments

Comments
 (0)