From d6e71765bf951f6b64dcf656f393092ebd5892de Mon Sep 17 00:00:00 2001 From: William Callahan Date: Tue, 27 Aug 2024 21:38:46 -0700 Subject: [PATCH] Update page --- docs/_config.yml | 30 +++++++------- docs/_layouts/default.html | 80 ++++---------------------------------- docs/assets/css/main.scss | 68 ++++++++++++++++++++++++++++++++ 3 files changed, 90 insertions(+), 88 deletions(-) create mode 100644 docs/assets/css/main.scss diff --git a/docs/_config.yml b/docs/_config.yml index e93c57f..6069b79 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -1,23 +1,16 @@ -remote_theme: pages-themes/minimal@v0.2.0 -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 @@ -26,3 +19,8 @@ exclude: - vendor/cache/ - vendor/gems/ - vendor/ruby/ + +# Custom SASS +sass: + sass_dir: _sass + style: compressed diff --git a/docs/_layouts/default.html b/docs/_layouts/default.html index adc9bbf..e928383 100644 --- a/docs/_layouts/default.html +++ b/docs/_layouts/default.html @@ -1,87 +1,23 @@ +--- +--- - aVenture Documentation - + {{ site.title }} +
-

aVenture Documentation

+

{{ site.title }}

- +
-

aVenture 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.

- - + {{ content }}
- + diff --git a/docs/assets/css/main.scss b/docs/assets/css/main.scss new file mode 100644 index 0000000..f5a6859 --- /dev/null +++ b/docs/assets/css/main.scss @@ -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; +}