diff --git a/config/_default/config.toml b/config/_default/config.toml index 44fec97..0419f27 100644 --- a/config/_default/config.toml +++ b/config/_default/config.toml @@ -39,7 +39,7 @@ defaultContentLanguageInSubdir = false paginate = 10 # Number of items per page in paginated lists. enableEmoji = true footnotereturnlinkcontents = "^" -ignoreFiles = ["\\.Rmd$", "\\.Rmarkdown$", "_files$", "_cache$"] +ignoreFiles = ["\\.ipynb$", ".ipynb_checkpoints$", "\\.Rmd$", "\\.Rmarkdown$", "_files$", "_cache$"] preserveTaxonomyNames = true [outputs] @@ -54,6 +54,11 @@ preserveTaxonomyNames = true latexDashes = true extensions = ["backslashLineBreak"] +[imaging] + resampleFilter = "lanczos" + quality = 90 + anchor = "smart" # Anchor for cropping. Options include Smart and Center. + # Taxonomies. [taxonomies] tag = "tags" diff --git a/content/author/admin/_index.md b/content/author/admin/_index.md index c1e2a99..6076d93 100644 --- a/content/author/admin/_index.md +++ b/content/author/admin/_index.md @@ -2,6 +2,9 @@ # Display name name = "Nelson Bighetti" +# Username (this should match the folder name) +authors = ["admin"] + # Is this the primary user of the site? superuser = true @@ -25,6 +28,10 @@ interests = [ "Information Retrieval" ] +# Organizational groups that you belong to (for People widget) +# Set this to `[]` or comment out if you are not using People widget. +user_groups = ["Researchers", "Visitors"] + # List qualifications (such as academic degrees) [[education.courses]] course = "PhD in Artificial Intelligence" diff --git a/content/home/about.md b/content/home/about.md index cdc6a6d..cea8e1b 100644 --- a/content/home/about.md +++ b/content/home/about.md @@ -8,5 +8,5 @@ title = "Biography" # Choose the user profile to display # This should be the username of a profile in your `content/author/` folder. -author = "Admin" +author = "admin" +++ diff --git a/content/home/hero.md b/content/home/hero.md index f903b64..4028b59 100644 --- a/content/home/hero.md +++ b/content/home/hero.md @@ -8,28 +8,48 @@ title = "Academic" # Order that this section will appear in. weight = 3 -# Overlay a color or image (optional). -# Deactivate an option by commenting out the line, prefixing it with `#`. -[header] - overlay_color = "#666" # An HTML color value. - overlay_img = "headers/bubbles-wide.jpg" # Image path relative to your `static/img/` folder. - overlay_filter = 0.5 # Darken the image. Value in range 0-1. +# Hero image (optional). Enter filename of an image in the `static/img/` folder. +hero_media = "" -# Call to action button (optional). -# Activate the button by specifying a URL and button label below. -# Deactivate by commenting out parameters, prefixing lines with `#`. +# Background (optional). +# Choose from a background color, gradient, or image. +# Choose a dark or light text color, by setting `text_color_light`. +# Delete or comment out (by prefixing `#`) any unused options. +[background] + # Background color. + # color = "navy" + + # Background gradient. + gradient_start = "#4bb4e3" + gradient_end = "#2b94c3" + + # Background image. + # image = "" # Name of image in `static/img/`. + # image_darken = 0.6 # Darken the image? Range 0-1 where 0 is transparent and 1 is opaque. + + # Text color (true=light or false=dark). + text_color_light = true + +# Call to action links (optional). +# Display link(s) by specifying a URL and label below. Icon is optional for `[cta]`. +# Remove a link/note by deleting a cta/note block. [cta] - url = "./post/getting-started/" - label = ' Install Now' + url = "post/getting-started/" + label = "Get Started" + icon_pack = "fas" + icon = "download" + +[cta_alt] + url = "https://sourcethemes.com/academic/" + label = "View Documentation" + +# Note. An optional note to show underneath the links. +[cta_note] + label = 'Latest release ' +++ -The highly flexible website framework for Hugo with an extensible plugin mechanism. Create a beautifully simple site in under 10 minutes :rocket: -
-