Skip to content

Commit

Permalink
Moved feature images to public directory
Browse files Browse the repository at this point in the history
  • Loading branch information
Severino committed Nov 5, 2024
1 parent b8b8b7c commit 42b0426
Show file tree
Hide file tree
Showing 13 changed files with 17 additions and 12 deletions.
9 changes: 7 additions & 2 deletions docs/.vuepress/components/GridLayout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<img
v-if="item.icon"
class="no-zoom"
:src="item.icon"
:src="getImage(item.icon)"
alt=""
>
</div>
Expand All @@ -43,7 +43,7 @@

<script lang="ts">
import Layout from '@vuepress/theme-default/lib/client/layouts/Layout.vue'
import { Content, resolveRoutePath } from 'vuepress/client';
import { Content, resolveRoutePath, withBase } from 'vuepress/client';

export default {
components: {
Expand All @@ -57,10 +57,15 @@
}
return '';
}

const getImage = (icon) => {
return withBase(icon);
}

return {
Content,
hrefOf,
getImage,
resolveRoutePath,
}
}
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
20 changes: 10 additions & 10 deletions docs/user/overview.md
Original file line number Diff line number Diff line change
@@ -1,37 +1,37 @@
---
layout: GridLayout
grid:
- icon: "./images/feature-icons/web-based.svg"
- icon: "/images/feature-icons/web-based.svg"
title: Web-based Software
details: The client can be accessed on any computer using a standard browser.
- icon: "./images/feature-icons/custom.svg"
- icon: "/images/feature-icons/custom.svg"
link: "./data-model"
title: Customizable Data Model
details: Highly flexible project-specific data models with a wide range of attribute types.
- icon: "./images/feature-icons/thesaurus.svg"
- icon: "/images/feature-icons/thesaurus.svg"
link: "./thesaurus"
title: Thesaurus
details: Multilingual and centrally controlled vocabulary for compliant with the SKOS standard.
- icon: "./images/feature-icons/bib.svg"
- icon: "/images/feature-icons/bib.svg"
title: Bibliography
link: ./bibliography
details: Basic bibliography management, allowing BibTex import and export.
- icon: "./images/feature-icons/user.svg"
- icon: "/images/feature-icons/user.svg"
title: User & Role Management
details: Manages user accounts and assign them specific roles with fully customizable rights and permissions.
- icon: "./images/feature-icons/collab.svg"
- icon: "/images/feature-icons/collab.svg"
title: Collaboration
details: Working on the same dataset as a team, managing certainty, literature and commenting on the data directly.
- icon: "./images/feature-icons/plugins.svg"
- icon: "/images/feature-icons/plugins.svg"
title: Plugins
details: Application is extensible through a plugin system. Adding existing functionality or writing custom plugins.
- icon: "./images/feature-icons/import.svg"
- icon: "/images/feature-icons/import.svg"
title: Files
details: The file plugin enables a file system, where files can be linked to single entities.
- icon: "./images/feature-icons/map.svg"
- icon: "/images/feature-icons/map.svg"
title: Map
details: The map plugin provides a light-weight GIS interface to visualize the data on maps.
- icon: "./images/feature-icons/analysis.svg"
- icon: "/images/feature-icons/analysis.svg"
title: Analysis
link: "./data-analysis"
details: User-Interface to run elaborate queries without the need to write SQL.
Expand Down

0 comments on commit 42b0426

Please sign in to comment.