Skip to content
Merged
Show file tree
Hide file tree
Changes from 16 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
30fe80c
thingweb redesign initial state
SergioCasCeb Sep 13, 2024
d6f9932
.
SergioCasCeb Sep 13, 2024
86b5d6f
services section, and background image
SergioCasCeb Sep 18, 2024
8dab8ec
created individual components for each section
SergioCasCeb Sep 19, 2024
678513f
fixed the dark version, made the background grid larger
SergioCasCeb Sep 20, 2024
dff1d8c
modify the light theme thingweb green
SergioCasCeb Sep 20, 2024
db4bc84
new hands-on and services pages
SergioCasCeb Sep 27, 2024
07109f0
added services
SergioCasCeb Sep 27, 2024
30ed921
.
SergioCasCeb Sep 27, 2024
4eff0ae
fixed footer links, under construction docs, adopter api, services an…
SergioCasCeb Oct 3, 2024
8fe3aa7
initial state of the workflow section
SergioCasCeb Oct 4, 2024
1ba8e2c
workflow navigation, fixed adopters bug
SergioCasCeb Oct 4, 2024
1d38067
small styling fixes
SergioCasCeb Oct 4, 2024
733fcf9
Created the services and hands-on pages as docs style page, fix workf…
SergioCasCeb Oct 11, 2024
0c7bd46
fixed the overflow of the services section, and removed unnecessary s…
SergioCasCeb Oct 11, 2024
e8b0024
removed hyphens from tools, removed thingweb logo from docs and fixed…
SergioCasCeb Oct 11, 2024
c64bd50
fixed feedback text and size, feedback text now fully hides after a w…
SergioCasCeb Oct 15, 2024
16bdfb8
trial workflows animations
SergioCasCeb Oct 18, 2024
90af3ff
Changed links for the tools, added benefits list to the workflows, ad…
SergioCasCeb Oct 18, 2024
1e8d2c7
remove repeated links from tools, fixed the sizing of the adopters lo…
SergioCasCeb Oct 21, 2024
aba62e9
Merge remote-tracking branch 'origin' into website-redesign-sergio
egekorkan Oct 21, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 0 additions & 32 deletions .github/workflows/gh-pages.yml

This file was deleted.

32 changes: 20 additions & 12 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
### VisualStudioCode ###
.vscode/*
# !.vscode/settings.json
# !.vscode/tasks.json
# !.vscode/launch.json
# !.vscode/extensions.json

### Others ###
_misc_bootstrap/*
themes/ananke/*
hugo.exe
public
# Dependencies
/node_modules

# Production
/build

# Generated files
.docusaurus
.cache-loader

# Misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
102 changes: 0 additions & 102 deletions CONTRIBUTING.md
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we still keep this file?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This will be restored

This file was deleted.

50 changes: 33 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,41 @@
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/eclipse-thingweb/website/master/misc/thingweb_logo_for_dark_bg.svg">
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/eclipse-thingweb/website/master/misc/thingweb_logo.svg">
<img title="ThingWeb" alt="Thingweb logo" src="" width="300px">
</picture>
# Website

This website is built using [Docusaurus](https://docusaurus.io/), a modern static website generator.

## Website
### Installation

Rendered version: <https://www.thingweb.io>
```
$ yarn
```

## How to contribute
### Local Development

- We use Hugo static site generator: https://gohugo.io/getting-started/quick-start/
- In order to add new content, you can use `hugo new posts/my-first-post.md` or `hugo new single01.md`
```
$ yarn start
```

You can see the content in different ways locally:
- Start the Hugo server with drafts enabled: `hugo server -D`
- Build Hugo website in `/public`: `hugo`
- Build Hugo website with drafts enabled in `/public`: `hugo -D`
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.

## Hugo Versions
### Build

Until we find a solution, it is recommended to use version 0.79.0 of Hugo.
For convenience, you can find the Linux binary under [binaries](./binaries/) folder.
```
$ yarn build
```

This command generates static content into the `build` directory and can be served using any static contents hosting service.

### Deployment

Using SSH:

```
$ USE_SSH=true yarn deploy
```

Not using SSH:

```
$ GIT_USER=<Your GitHub username> yarn deploy
```

If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch.
6 changes: 0 additions & 6 deletions archetypes/default.md

This file was deleted.

3 changes: 3 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
presets: [require.resolve('@docusaurus/core/lib/babel/preset')],
};
Loading