Commit 65d4333a authored by Carmelo Arcidiacono's avatar Carmelo Arcidiacono 💬
Browse files

Initial MASTER website (Jekyll + Just-the-Docs)

parent 84622754
Loading
Loading
Loading
Loading
Loading

.gitlab-ci.yml

0 → 100644
+21 −0
Original line number Diff line number Diff line
image: ruby:3.2

variables:
  JEKYLL_ENV: production
  BUNDLE_PATH: vendor/bundle

cache:
  paths:
    - vendor/bundle

pages:
  stage: deploy
  script:
    - gem install bundler
    - bundle install
    - bundle exec jekyll build -d public
  artifacts:
    paths:
      - public
  only:
    - main

Gemfile

0 → 100644
+5 −0
Original line number Diff line number Diff line
source "https://rubygems.org"

gem "jekyll", "~> 4.3"
gem "webrick", "~> 1.8"
gem "just-the-docs", "~> 0.8.0"

_config.yml

0 → 100644
+12 −0
Original line number Diff line number Diff line
title: "MASTER  Math, ASTronomy & Research"
description: "INAF working group on AO, PSF-R, and high-resolution imaging"
theme: "just-the-docs"

search_enabled: true

logo: "/assets/images/master-logo.svg"
favicon_ico: "/assets/images/master-logo.svg"

aux_links:
  "GitLab Repository":
    - "https://www.ict.inaf.it/gitlab/master/master-site"
+26 −0
Original line number Diff line number Diff line
<svg xmlns="http://www.w3.org/2000/svg" width="640" height="160" viewBox="0 0 640 160">
  <defs>
    <linearGradient id="g" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#2B6CB0"></stop>
      <stop offset="100%" stop-color="#38B2AC"></stop>
    </linearGradient>
  </defs>
  <!-- Wavefront/PSF rings -->
  <g transform="translate(60,80)">
    <circle r="48" fill="none" stroke="url(#g)" stroke-width="3"></circle>
    <circle r="32" fill="none" stroke="url(#g)" stroke-width="3" opacity="0.8"></circle>
    <circle r="16" fill="url(#g)" opacity="0.35"></circle>
  </g>
  <!-- MASTER wordmark -->
  <g transform="translate(130,106)" font-family="Segoe UI, Roboto, Arial" font-weight="700">
    <text font-size="64" fill="#111">MAST</text>
    <text x="220" font-size="64" fill="url(#g)">E</text>
    <text x="268" font-size="64" fill="#111">R</text>
  </g>
  <!-- tagline -->
  <text x="130" y="132" font-family="Segoe UI, Roboto, Arial" font-size="16" fill="#444">
    Math, ASTronomy &amp; Research — High-Resolution Imaging &amp; AO Data Processing
  </text>
  <!-- subtle AO ray -->
  <path d="M60 80 L120 80" stroke="url(#g)" stroke-width="2" stroke-linecap="round"></path>
</svg>
+0 −0

Empty file added.

Loading