├── .gitmodules ├── archetypes └── default.md ├── config.toml ├── content └── posts │ └── welcome.md ├── deploy.sh ├── static └── images │ ├── Activity.jpg │ ├── Admin.png │ ├── Environment_Observation.png │ ├── Participant.png │ ├── Phenotype_Observation.png │ ├── Plot.jpg │ ├── ShroomFarm.jpg │ ├── UniversalModel.jpg │ └── dew.jpg └── wiki └── workflow ├── milestones.png └── projectboard.png /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "themes/ananke"] 2 | path = themes/ananke 3 | url = https://github.com/budparr/gohugo-theme-ananke.git 4 | -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "{{ replace .Name "-" " " | title }}" 3 | date: {{ .Date }} 4 | draft: true 5 | --- 6 | 7 | -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- 1 | baseURL = "http://futureag.github.io/" 2 | languageCode = "en-us" 3 | title = "Futureag" 4 | theme = "ananke" 5 | 6 | [params] 7 | background_color_class = "bg-black" 8 | featured_image = "/images/dew.jpg" 9 | -------------------------------------------------------------------------------- /content/posts/welcome.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Welcome" 3 | date: 2018-05-27T12:02:34-05:00 4 | --- 5 | 6 | # More later! 7 | 8 | * Links to various repos/major things 9 | * Links to wiki 10 | * Get involved guide 11 | -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo -e "\033[0;32mDeploying updates to GitHub...\033[0m" 4 | 5 | # Build the project. 6 | hugo # if using a theme, replace with `hugo -t ` 7 | 8 | # Go To Public folder 9 | cd public 10 | # Add changes to git. 11 | git add . 12 | 13 | # Commit changes. 14 | msg="rebuilding site `date`" 15 | if [ $# -eq 1 ] 16 | then msg="$1" 17 | fi 18 | git commit -m "$msg" 19 | 20 | # Push source and build repos. 21 | git push origin master 22 | 23 | # Come Back up to the Project Root 24 | cd .. -------------------------------------------------------------------------------- /static/images/Activity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureag/blog/a77463e499afa6e92c93afb2d4994cc235bce1c0/static/images/Activity.jpg -------------------------------------------------------------------------------- /static/images/Admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureag/blog/a77463e499afa6e92c93afb2d4994cc235bce1c0/static/images/Admin.png -------------------------------------------------------------------------------- /static/images/Environment_Observation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureag/blog/a77463e499afa6e92c93afb2d4994cc235bce1c0/static/images/Environment_Observation.png -------------------------------------------------------------------------------- /static/images/Participant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureag/blog/a77463e499afa6e92c93afb2d4994cc235bce1c0/static/images/Participant.png -------------------------------------------------------------------------------- /static/images/Phenotype_Observation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureag/blog/a77463e499afa6e92c93afb2d4994cc235bce1c0/static/images/Phenotype_Observation.png -------------------------------------------------------------------------------- /static/images/Plot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureag/blog/a77463e499afa6e92c93afb2d4994cc235bce1c0/static/images/Plot.jpg -------------------------------------------------------------------------------- /static/images/ShroomFarm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureag/blog/a77463e499afa6e92c93afb2d4994cc235bce1c0/static/images/ShroomFarm.jpg -------------------------------------------------------------------------------- /static/images/UniversalModel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureag/blog/a77463e499afa6e92c93afb2d4994cc235bce1c0/static/images/UniversalModel.jpg -------------------------------------------------------------------------------- /static/images/dew.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureag/blog/a77463e499afa6e92c93afb2d4994cc235bce1c0/static/images/dew.jpg -------------------------------------------------------------------------------- /wiki/workflow/milestones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureag/blog/a77463e499afa6e92c93afb2d4994cc235bce1c0/wiki/workflow/milestones.png -------------------------------------------------------------------------------- /wiki/workflow/projectboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureag/blog/a77463e499afa6e92c93afb2d4994cc235bce1c0/wiki/workflow/projectboard.png --------------------------------------------------------------------------------