Skip to content

Commit 2b09934

Browse files
committed
Start Re-Working Main Page
1 parent 24b1d98 commit 2b09934

File tree

62 files changed

+1352
-706
lines changed

Some content is hidden

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

62 files changed

+1352
-706
lines changed

.clang-format

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
---
2+
Language: Cpp
3+
BasedOnStyle: Google
4+
AccessModifierOffset: -4
5+
AlignAfterOpenBracket: Align
6+
AlignConsecutiveAssignments: false
7+
AlignConsecutiveDeclarations: false
8+
AlignEscapedNewlinesLeft: true
9+
AlignOperands: true
10+
AlignTrailingComments: true
11+
AllowAllParametersOfDeclarationOnNextLine: true
12+
AllowShortBlocksOnASingleLine: false
13+
AllowShortCaseLabelsOnASingleLine: false
14+
AllowShortFunctionsOnASingleLine: All
15+
AllowShortIfStatementsOnASingleLine: true
16+
AllowShortLoopsOnASingleLine: true
17+
AlwaysBreakAfterDefinitionReturnType: None
18+
AlwaysBreakAfterReturnType: None
19+
AlwaysBreakBeforeMultilineStrings: true
20+
AlwaysBreakTemplateDeclarations: true
21+
BinPackArguments: true
22+
BinPackParameters: true
23+
BraceWrapping:
24+
AfterClass: false
25+
AfterControlStatement: false
26+
AfterEnum: false
27+
AfterFunction: false
28+
AfterNamespace: false
29+
AfterObjCDeclaration: false
30+
AfterStruct: false
31+
AfterUnion: false
32+
BeforeCatch: false
33+
BeforeElse: false
34+
IndentBraces: false
35+
BreakBeforeBinaryOperators: None
36+
BreakBeforeBraces: Attach
37+
BreakBeforeTernaryOperators: true
38+
BreakConstructorInitializersBeforeComma: false
39+
ColumnLimit: 80
40+
CommentPragmas: '^ IWYU pragma:'
41+
ConstructorInitializerAllOnOneLineOrOnePerLine: true
42+
ConstructorInitializerIndentWidth: 4
43+
ContinuationIndentWidth: 4
44+
Cpp11BracedListStyle: true
45+
DerivePointerAlignment: false
46+
DisableFormat: false
47+
ExperimentalAutoDetectBinPacking: false
48+
ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ]
49+
IncludeCategories:
50+
- Regex: '^<.*\.h>'
51+
Priority: 1
52+
- Regex: '^<.*'
53+
Priority: 2
54+
- Regex: '.*'
55+
Priority: 3
56+
IndentCaseLabels: true
57+
IndentWidth: 4
58+
IndentWrappedFunctionNames: false
59+
KeepEmptyLinesAtTheStartOfBlocks: false
60+
MacroBlockBegin: ''
61+
MacroBlockEnd: ''
62+
MaxEmptyLinesToKeep: 1
63+
NamespaceIndentation: None
64+
ObjCBlockIndentWidth: 2
65+
ObjCSpaceAfterProperty: false
66+
ObjCSpaceBeforeProtocolList: false
67+
PenaltyBreakBeforeFirstCallParameter: 1
68+
PenaltyBreakComment: 300
69+
PenaltyBreakFirstLessLess: 120
70+
PenaltyBreakString: 1000
71+
PenaltyExcessCharacter: 1000000
72+
PenaltyReturnTypeOnItsOwnLine: 200
73+
PointerAlignment: Left
74+
ReflowComments: true
75+
SortIncludes: false
76+
SpaceAfterCStyleCast: false
77+
SpaceBeforeAssignmentOperators: true
78+
SpaceBeforeParens: ControlStatements
79+
SpaceInEmptyParentheses: false
80+
SpacesBeforeTrailingComments: 2
81+
SpacesInAngles: false
82+
SpacesInContainerLiterals: true
83+
SpacesInCStyleCastParentheses: false
84+
SpacesInParentheses: false
85+
SpacesInSquareBrackets: false
86+
Standard: Auto
87+
TabWidth: 8
88+
UseTab: Never
89+
...

.styleguide

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
cHeaderFileInclude {
2+
\.h$
3+
}
4+
5+
cppHeaderFileInclude {
6+
\.hpp$
7+
\.inl$
8+
}
9+
10+
cppSrcFileInclude {
11+
\.cpp$
12+
}

.styleguide-license

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
// Copyright (c) FRC Team 3512, Spartatroniks {year}. All Rights Reserved.

Assests/arch.png

73.2 KB
Loading

Assests/mac.jpeg

1.62 KB
Loading

Assests/ubuntu.png

75 KB
Loading

Assests/windows.png

36.8 KB
Loading

Collapse.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
var coll = document.getElementsByClassName("collapsible");
2+
3+
for (var i = 0; i < coll.length; i++) {
4+
coll[i].addEventListener("click", function() {
5+
this.classList.toggle("active");
6+
var content = this.nextElementSibling;
7+
if (content.style.display === "block") {
8+
content.style.display = "none";
9+
} else {
10+
content.style.display = "block";
11+
}
12+
});
13+
}

admin/goals/index.html

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,29 @@
99
<link rel="shortcut icon" type="image/ico" href="../../favicon.ico">
1010
</head>
1111
<body>
12-
<header id="navbar">
13-
<ul>
12+
<input type="checkbox" id="ham-menu">
13+
<label for="ham-menu">
14+
<div class="hide-des">
15+
<span class="menu-line"></span>
16+
<span class="menu-line"></span>
17+
<span class="menu-line"></span>
18+
<span class="menu-line"></span>
19+
<span class="menu-line"></span>
20+
<span class="menu-line"></span>
21+
</div>
22+
23+
</label>
24+
<div class="full-page-blue"></div>
25+
<div class="ham-menu">
26+
<ul class="centre-text bold-text">
1427
<li>
1528
<a href="../../">Home</a>
1629
</li>
1730
<li>
1831
<a href="../">Admin</a>
1932
</li>
2033
<li>
21-
<a href="../../bootstrap/">Developer Bootstrap</a>
34+
<a href="../../bootstrap/">Developer Bootstraps</a>
2235
</li>
2336
<li>
2437
<a href="../../vpn/">VPN Setup</a>
@@ -33,7 +46,7 @@
3346
<a href="../../archives/">Archives</a>
3447
</li>
3548
</ul>
36-
</header>
49+
</div>
3750
<div class="body">
3851
<h1>Goals</h1>
3952
<p>The following is a list of goals the software team tries to meet each

admin/index.html

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,29 @@
99
<link rel="shortcut icon" type="image/ico" href="../favicon.ico">
1010
</head>
1111
<body>
12-
<header id="navbar">
13-
<ul>
12+
<input type="checkbox" id="ham-menu">
13+
<label for="ham-menu">
14+
<div class="hide-des">
15+
<span class="menu-line"></span>
16+
<span class="menu-line"></span>
17+
<span class="menu-line"></span>
18+
<span class="menu-line"></span>
19+
<span class="menu-line"></span>
20+
<span class="menu-line"></span>
21+
</div>
22+
23+
</label>
24+
<div class="full-page-blue"></div>
25+
<div class="ham-menu">
26+
<ul class="centre-text bold-text">
1427
<li>
1528
<a href="../">Home</a>
1629
</li>
1730
<li>
18-
<a href="./" class="active">Admin</a>
31+
<a href="/">Admin</a>
1932
</li>
2033
<li>
21-
<a href="../bootstrap/">Developer Bootstrap</a>
34+
<a href="../bootstrap/">Developer Bootstraps</a>
2235
</li>
2336
<li>
2437
<a href="../vpn/">VPN Setup</a>
@@ -33,7 +46,7 @@
3346
<a href="../archives/">Archives</a>
3447
</li>
3548
</ul>
36-
</header>
49+
</div>
3750
<div class="body">
3851
<h1 id="Administration">Administration</h1>
3952
<h2 id="Goals"><a href="goals/">Goals</a></h2>

0 commit comments

Comments
 (0)