initial commit

master
Matthew 2025-03-22 00:37:31 -04:00
commit eead1b6163
Signed by: matthew
SSH Key Fingerprint: SHA256:piIXekA9q1p0ZGi4ogFbNY1embip5Ytbi3v8AZ8UYq4
9 changed files with 139 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
.idea
libraryofcode.dev-frontend.iml

8
.idea/.gitignore vendored Normal file
View File

@ -0,0 +1,8 @@
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

7
.idea/discord.xml Normal file
View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="DiscordProjectSettings">
<option name="show" value="ASK" />
<option name="description" value="" />
</component>
</project>

6
.idea/misc.xml Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager">
<output url="file://$PROJECT_DIR$/out" />
</component>
</project>

8
.idea/modules.xml Normal file
View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/libraryofcode.dev-frontend.iml" filepath="$PROJECT_DIR$/libraryofcode.dev-frontend.iml" />
</modules>
</component>
</project>

6
.idea/vcs.xml Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

45
index.html Normal file
View File

@ -0,0 +1,45 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>LOC Community</title>
<!-- Link to external CSS file -->
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header>
<h1>LOC Community</h1>
<nav>
<ul>
<li><a href="https://www.libraryofcode.org/" target="_blank">Main Site</a></li>
<li><a href="https://canvas.libraryofcode.org" target="_blank">Canvas LMS</a></li>
<li><a href="https://okta.libraryofcode.org" target="_blank">Okta Identity</a></li>
<li><a href="https://libraryofcode.dev/login" target="_blank">Google Workspace</a></li>
</ul>
</nav>
</header>
<main>
<section id="welcome">
<h2>libraryofcode.dev</h2>
<p>
This hub is your starting point for accessing our community resources, student accounts, apprenticeships, and more.
Use the navigation above to explore the main site, LMS, identity services, and login to your workspace.
</p>
</section>
<section id="domain">
<h2>The .dev domain</h2>
<p>
The libraryofcode.dev domain serves as a dedicated hub for members of the Library of Code community, including students, apprentices, educators, and staff. Its primary purpose is to centralize access to essential digital resources, user accounts, workspaces, and educational tools. By providing quick, streamlined links to platforms such as Canvas LMS, Okta federated identity services, and personalized Google Workspace accounts, the domain enhances ease of access, collaboration, and efficient resource management within the community.
</p>
</section>
<!-- Additional sections can be added here as your site grows -->
</main>
<footer>
<p>&copy; 2025 Library of Code, Inc. All rights reserved.</p>
<p><i>Library of Code, Inc. (EIN: 33-2104857) is a 501(c)(3) public charity nonprofit corporation. </i></p>
</footer>
</body>
</html>

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="GENERAL_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

49
styles.css Normal file
View File

@ -0,0 +1,49 @@
/* styles.css */
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #f5f5f5;
color: #333;
}
header {
background-color: #003366;
color: #fff;
padding: 1rem;
text-align: center;
}
header h1 {
margin: 0;
}
nav ul {
list-style: none;
padding: 0;
display: flex;
justify-content: center;
gap: 1rem;
margin-top: 0.5rem;
}
nav ul li a {
color: #fff;
text-decoration: none;
font-weight: bold;
}
main {
padding: 2rem;
max-width: 800px;
margin: 0 auto;
}
footer {
background-color: #003366;
color: #fff;
text-align: center;
padding: 1rem;
position: fixed;
bottom: 0;
width: 100%;
}