Skip to content

Commit

Permalink
Update page
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamAGH committed Aug 28, 2024
1 parent ac12354 commit d6e7176
Show file tree
Hide file tree
Showing 3 changed files with 90 additions and 88 deletions.
30 changes: 14 additions & 16 deletions docs/_config.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,16 @@
remote_theme: pages-themes/[email protected]
plugins:
- jekyll-remote-theme

# _config.yml
title: aVenture Documentation
description: Documentation for the aVenture VC research database
logo: /images/logos/aventure_logo_1280x640_transparent.png
show_downloads: false
description: Documentation for aVenture, a private venture capital research platform
baseurl: "" # the subpath of your site, e.g. /blog
url: "https://aventurevc.github.io" # the base hostname & protocol for your site

# Theme-specific settings
# Build settings
markdown: kramdown
kramdown:
input: GFM
syntax_highlighter: rouge

# GitHub metadata
github:
is_project_page: false
theme: minima
plugins:
- jekyll-feed

# Exclude files from processing
# Exclude from processing
exclude:
- Gemfile
- Gemfile.lock
Expand All @@ -26,3 +19,8 @@ exclude:
- vendor/cache/
- vendor/gems/
- vendor/ruby/

# Custom SASS
sass:
sass_dir: _sass
style: compressed
80 changes: 8 additions & 72 deletions docs/_layouts/default.html
Original file line number Diff line number Diff line change
@@ -1,87 +1,23 @@
---
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>aVenture Documentation</title>
<style>
body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
color: #333;
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #f4f4f4;
}
header {
text-align: center;
margin-bottom: 40px;
}
.logo {
max-width: 300px;
height: auto;
}
h1 {
color: #2c3e50;
margin-top: 20px;
}
p {
margin-bottom: 20px;
}
.quick-links {
background-color: #fff;
border-radius: 8px;
padding: 20px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.quick-links h2 {
color: #2c3e50;
margin-top: 0;
}
.quick-links ul {
list-style-type: none;
padding: 0;
}
.quick-links li {
margin-bottom: 10px;
}
.quick-links a {
color: #3498db;
text-decoration: none;
transition: color 0.3s ease;
}
.quick-links a:hover {
color: #2980b9;
}
footer {
margin-top: 40px;
text-align: center;
color: #7f8c8d;
}
</style>
<title>{{ site.title }}</title>
<link rel="stylesheet" href="{{ '/assets/css/main.scss' | relative_url }}">
</head>
<body>
<header>
<img src="https://aventurevc.github.io/aventure-app/assets/images/aventure_logo_1280x_wide_reduced_transparent.png" alt="aVenture Logo" class="logo">
<h1>aVenture Documentation</h1>
<h1>{{ site.title }}</h1>
</header>

<main>
<p><strong>aVenture</strong> is a private venture capital research platform providing startup and investor data at both personal and firm levels. This documentation provides information on accessing and using the aVenture research database.</p>

<div class="quick-links">
<h2>Quick Links</h2>
<ul>
<li><a href="gettingStarted/">Getting Started</a></li>
<li><a href="conventions/">Conventions</a></li>
<li><a href="terms-of-use/">Terms of Use</a></li>
<li><a href="privacy-policy/">Privacy Policy</a></li>
<li><a href="legal-disclaimers/">Legal Disclaimers</a></li>
</ul>
</div>
{{ content }}
</main>

<footer>
<p>For more information, visit <a href="https://aventure.vc">https://aventure.vc</a></p>
</footer>
Expand Down
68 changes: 68 additions & 0 deletions docs/assets/css/main.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
---
---

body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
color: #333;
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #f4f4f4;
}

header {
text-align: center;
margin-bottom: 40px;
}

.logo {
max-width: 300px;
height: auto;
}

h1 {
color: #2c3e50;
margin-top: 20px;
}

p {
margin-bottom: 20px;
}

.quick-links {
background-color: #fff;
border-radius: 8px;
padding: 20px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.quick-links h2 {
color: #2c3e50;
margin-top: 0;
}

.quick-links ul {
list-style-type: none;
padding: 0;
}

.quick-links li {
margin-bottom: 10px;
}

.quick-links a {
color: #3498db;
text-decoration: none;
transition: color 0.3s ease;
}

.quick-links a:hover {
color: #2980b9;
}

footer {
margin-top: 40px;
text-align: center;
color: #7f8c8d;
}

0 comments on commit d6e7176

Please sign in to comment.