-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
afermier
committed
May 16, 2023
1 parent
dce02c3
commit 19503b5
Showing
12 changed files
with
275 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
.Rproj.user | ||
.Rhistory | ||
.RData | ||
.Ruserdata | ||
public/ |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"frontMatter.dashboard.openOnStart": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
title: "{{ replace .Name "-" " " | title }}" | ||
date: {{ .Date }} | ||
draft: true | ||
--- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
# URL Configurations | ||
|
||
# baseURL is prepended to alias links when "/" is set: https://gohugo.io/content-management/urls/#aliases | ||
|
||
# baseURL = Hostname (and path) to the root | ||
# https://gohugo.io/getting-started/configuration/#baseurl | ||
|
||
# base URL when running local - use this one when running local | ||
baseURL = "" | ||
|
||
|
||
# Enable to turn relative URLs into absolute. | ||
# https://gohugo.io/getting-started/configuration/#canonifyurls | ||
canonifyURLs = "TRUE" | ||
|
||
# Enable this to make all relative URLs relative to content root. Note that this does not affect absolute URLs. | ||
#https://gohugo.io/getting-started/configuration/#relativeurls | ||
# relativeURLs = "FALSE" | ||
|
||
languageCode = 'en-us' | ||
title = 'Work Force of the Future' | ||
|
||
# Change the default theme to be use when building the site with Hugo | ||
# Note - hugo-chart has to go first as per instructions for integrating chart.js - https://github.com/shen-yu/hugo-chart#usage | ||
theme = ["hugo-theme-relearn"] | ||
|
||
# For search functionality | ||
[outputs] | ||
home = [ "HTML", "RSS", "JSON"] | ||
|
||
# Ugly URLs to try to get it to work on S3 | ||
uglyurls = "false" | ||
|
||
|
||
# Following guide from https://learn.netlify.app/en/basics/configuration/ | ||
|
||
[params] | ||
# This controls whether submenus will be expanded (true), or collapsed (false) in the | ||
# menu; if no setting is given, the first menu level is set to false, all others to true; | ||
# this can be overridden in the pages frontmatter | ||
alwaysopen = false | ||
# Prefix URL to edit current page. Will display an "Edit" button on top right hand corner of every page. | ||
# Useful to give opportunity to people to create merge request for your doc. | ||
# See the config.toml file from this documentation site to have an example. | ||
editURL = "C://work//git//hugo" | ||
# Author of the site, will be used in meta information | ||
author = "Adam Fermier" | ||
# Description of the site, will be used in meta information | ||
description = "Background of Hugo" | ||
# Shows a checkmark for visited pages on the menu | ||
showVisitedLinks = true | ||
# Disable search function. It will hide search bar | ||
disableSearch = false | ||
# Disable search in hidden pages, otherwise they will be shown in search box | ||
disableSearchHiddenPages = false | ||
# Disables hidden pages from showing up in the sitemap and on Google (et all), otherwise they may be indexed by search engines | ||
disableSeoHiddenPages = false | ||
# Disables hidden pages from showing up on the tags page although the tag term will be displayed even if all pages are hidden | ||
disableTagHiddenPages = false | ||
# Javascript and CSS cache are automatically busted when new version of site is generated. | ||
# Set this to true to disable this behavior (some proxies don't handle well this optimization) | ||
disableAssetsBusting = false | ||
# Set this to true if you want to disable generation for generator version meta tags of hugo and the theme; | ||
# don't forget to also set Hugo's disableHugoGeneratorInject=true, otherwise it will generate a meta tag into your home page | ||
disableGeneratorVersion = false | ||
# Set this to true to disable copy-to-clipboard button for inline code. | ||
disableInlineCopyToClipBoard = false | ||
# A title for shortcuts in menu is set by default. Set this to true to disable it. | ||
disableShortcutsTitle = false | ||
# If set to false, a Home button will appear below the search bar on the menu. | ||
# It is redirecting to the landing page of the current language if specified. (Default is "/") | ||
disableLandingPageButton = true | ||
# When using mulitlingual website, disable the switch language button. | ||
disableLanguageSwitchingButton = false | ||
# Hide breadcrumbs in the header and only show the current page title | ||
disableBreadcrumb = false | ||
# If set to true, hide table of contents menu in the header of all pages | ||
disableToc = false | ||
# If set to false, load the MathJax module on every page regardless if a MathJax shortcode is present | ||
disableMathJax = false | ||
# Specifies the remote location of the MathJax js | ||
customMathJaxURL = "https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js" | ||
# Initialization parameter for MathJax, see MathJax documentation | ||
mathJaxInitialize = "{}" | ||
|
||
### Mermaid | ||
# If set to false, load the Mermaid module on every page regardless if a Mermaid shortcode or Mermaid codefence is present | ||
disableMermaid = false | ||
# Specifies the remote location of the Mermaid js | ||
customMermaidURL = "https://unpkg.com/mermaid@8.8.0/dist/mermaid.min.js" | ||
# Initialization parameter for Mermaid, see Mermaid documentation | ||
mermaidInitialize = "{ \"theme\": \"default\" }" | ||
# Enabling one to zoom a mermaid diagram | ||
mermaidZoom = true | ||
|
||
# If set to false, load the Swagger module on every page regardless if a Swagger shortcode is present | ||
disableSwagger = false | ||
# Specifies the remote location of the RapiDoc js | ||
customSwaggerURL = "https://unpkg.com/rapidoc/dist/rapidoc-min.js" | ||
# Initialization parameter for Swagger, see RapiDoc documentation | ||
swaggerInitialize = "{ \"theme\": \"light\" }" | ||
# Hide Next and Previous page buttons normally displayed full height beside content | ||
disableNextPrev = false | ||
# Order sections in menu by "weight" or "title". Default to "weight"; | ||
# this can be overridden in the pages frontmatter | ||
ordersectionsby = "weight" | ||
# Change default color scheme with a variant one. Eg. can be "auto", "red", "blue", "green" or an array like [ "blue", "green" ]. | ||
themeVariant = "blue" | ||
# Change the title separator. Default to "::". | ||
titleSeparator = "-" | ||
# If set to true, the menu in the sidebar will be displayed in a collapsible tree view. Although the functionality works with old browsers (IE11), the display of the expander icons is limited to modern browsers | ||
collapsibleMenu = false | ||
# If a single page can contain content in multiple languages, add those here | ||
additionalContentLanguage = [ "en" ] | ||
# If set to true, no index.html will be appended to prettyURLs; this will cause pages not | ||
# to be servable from the file system | ||
disableExplicitIndexURLs = false | ||
# For external links you can define how they are opened in your browser; this setting will only be applied to the content area but not the shortcut menu | ||
externalLinkTarget = "_blank" | ||
|
||
[markup] | ||
[markup.highlight] | ||
# if `guessSyntax = true`, there will be no unstyled code even if no language | ||
# was given BUT Mermaid and Math codefences will not work anymore! So this is a | ||
# mandatory setting for your site if you want to use Mermaid codefences | ||
guessSyntax = false # see if this helps us run chartjs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
title: Home | ||
weight: 1 | ||
chapter: true | ||
--- | ||
|
||
# Welcome to Workforce of the Future | ||
|
||
## Purpose: | ||
|
||
Workforce of the Future (wfotf) is an initiative led by [Ferdinando Aspesi ](https://www.linkedin.com/in/ferdinando-aspesi-68816115/) and [Tony Moreira](https://cbee.umbc.edu/antonio-moreira/) which was built to help organize academic and industry goals to achieve mutual benefit of gainful employment and top talent seeking technology jobs in the pharmaceutical industry. | ||
|
||
## Status: | ||
|
||
We are working with three key Academic Partners ... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
{ | ||
"$schema": "https://frontmatter.codes/frontmatter.schema.json", | ||
"frontMatter.taxonomy.contentTypes": [ | ||
{ | ||
"name": "default", | ||
"pageBundle": false, | ||
"previewPath": null, | ||
"fields": [ | ||
{ | ||
"title": "Title", | ||
"name": "title", | ||
"type": "string" | ||
}, | ||
{ | ||
"title": "Description", | ||
"name": "description", | ||
"type": "string" | ||
}, | ||
{ | ||
"title": "Publishing date", | ||
"name": "date", | ||
"type": "datetime", | ||
"default": "{{now}}", | ||
"isPublishDate": true | ||
}, | ||
{ | ||
"title": "Content preview", | ||
"name": "preview", | ||
"type": "image" | ||
}, | ||
{ | ||
"title": "Is in draft", | ||
"name": "draft", | ||
"type": "draft" | ||
}, | ||
{ | ||
"title": "Tags", | ||
"name": "tags", | ||
"type": "tags" | ||
}, | ||
{ | ||
"title": "Categories", | ||
"name": "categories", | ||
"type": "categories" | ||
}, | ||
{ | ||
"title": "weight", | ||
"name": "weight", | ||
"type": "number" | ||
}, | ||
{ | ||
"title": "chapter", | ||
"name": "chapter", | ||
"type": "boolean" | ||
} | ||
] | ||
} | ||
], | ||
"frontMatter.framework.id": "hugo", | ||
"frontMatter.content.publicFolder": "static", | ||
"frontMatter.preview.host": "http://localhost:1313", | ||
"frontMatter.taxonomy.tags": [], | ||
"frontMatter.taxonomy.categories": [], | ||
"frontMatter.content.pageFolders": [ | ||
{ | ||
"title": "content", | ||
"path": "[[workspace]]/content" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<style> | ||
/* we limit width if we have large screens */ | ||
@media screen and (min-width: 1500px) { | ||
|
||
/* #sidebar/width + ./max-width */ | ||
#body .flex-block-wrapper { | ||
margin-left: auto; | ||
margin-right: auto; | ||
max-width: 1500px; | ||
width: 100%; | ||
} | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<h4><em><span style="color: #ffffff;">Work Force of the Future</span></em></h4> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{{ $w := default "100" (.Get 0) }} | ||
{{ $h := default "300" (.Get 1) }} | ||
{{ $r := ( .Inner | chomp) }} | ||
{{ $seed := "foo" }} | ||
{{ $id := delimit (shuffle (split (md5 $seed) "" )) "" }} | ||
|
||
<div style="width: {{ $w }}%;height: {{ $h }}px;margin: 0 auto"> | ||
<canvas id="{{ $id }}"></canvas> | ||
</div> | ||
<script src="https://cdn.jsdelivr.net/npm/chart.js/dist/Chart.min.js"></script> | ||
<script type="text/javascript"> | ||
var ctx = document.getElementById('{{ $id }}').getContext('2d'); | ||
var options = {{ $r | safeJS }}; | ||
new Chart(ctx, options); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<script> | ||
function resizeIframe(obj) { | ||
obj.style.height = 1.05*obj.contentWindow.document.body.scrollHeight + 'px'; | ||
} | ||
</script> | ||
|
||
<iframe | ||
height= 1250 px | ||
width= 1000 px | ||
name="iframe" | ||
src="{{ index .Params 0 }}" | ||
frameborder="0" | ||
scrolling="yes" | ||
position: relative | ||
allowfullscreen = TRUE | ||
onload="resizeIframe(this)"> | ||
</iframe> | ||
|
||
|
||
|