trilium/apps/website2/src/index.html
2025-09-26 23:16:06 +03:00

117 lines
6.4 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="./style.css" />
<meta charset="utf-8" />
</head>
<body>
<header>
<div class="content-wrapper">
<img src="./assets/icon-color.svg" width="300" height="300">&nbsp;<span>Trilium Notes</span>
<nav>
<a class="download-button" href="https://github.com/TriliumNext/Trilium/releases/latest">
Download now
<span class="platform"></span>
</a>
</nav>
</div>
</header>
<section class="hero-section no-wrap">
<div class="content-wrapper">
<div class="title-section">
<h1>Organize your thoughts. Build your personal knowledge base.</h1>
<p>Trilium is an open-source solution for note-taking and organizing a personal knowledge base. Use it locally on your desktop, or sync it with your self-hosted server to keep your notes everywhere you go.</p>
<a class="download-button" href="https://github.com/TriliumNext/Trilium/releases/latest">
Download now
<span class="platform"></span>
</a>
</div>
<figure class="image"><img src="./assets/screenshot_desktop_win.png"></figure>
</div>
</section>
<section class="collections">
<div class="content-wrapper">
<h2> Collections </h2>
<div class="collections-container">
<div class="card">
<img class="image" src="./assets/collection_calendar.png" width="1651" height="810">
<p>
<span class="text-big">Calendar</span><br>
Organize your personal or professional events using a calendar, with support for
all-day and multi-day events. See your events at a glance with the week, month and year views.
Easy interaction to add or drag events.
</p>
</div>
<div class="card">
<img src="./assets/collection_table.png" width="1643" height="647">
<p>
<span class="text-big">Table</span><br>
Display and edit information about notes in a tabular structure, with various column types such as text, number, check boxes, date &amp; time, links and colors and support for relations. Optionally, display the notes within a tree hierarchy inside the table. </p>
</div>
<div class="card">
<img src="./assets/collection_board.png" width="1174" height="850">
<p>
<span class="text-big"> Board</span><br>
Organize your tasks or project status into a Kanban board with an easy way to create new items and columns and simply changing their status by dragging across the board.
</p>
</div>
<div class="card">
<img class="image" src="./assets/collection_geomap.png" width="844" height="639">
<p>
<span class="text-big">Geomap</span><br>
Plan your vacations or mark your points of interest directly on a geographical map
using customizable markers. Display recorded GPX tracks to track itineraries.
</p>
</div>
</div>
</div>
</section>
<section class="faq">
<div class="content-wrapper">
<h2> FAQ </h2>
<details>
<summary> Where is the data stored? </summary>
<p>All your notes will be stored in an SQLite database in an application folder. The reasoning why Trilium uses a database instead of plain text files is both performance and some features would be much more difficult to implement such as clones (same note in multiple places in the tree). To find the application folder, simply go to the About window. </p>
</details>
<details>
<summary> Do I need a server to use Trilium? </summary>
<p>No, the server allows access via a web browser and manages the synchronization if you have multiple devices. To get started, it's enough to download the desktop application and start using it. </p>
</details>
<details>
<summary> Can I share my database over a network drive? </summary>
<p>No, it's generally not a good idea to share a SQLite database over a network drive. Although sometimes it might work, there are chances that the database will get corrupted due to imperfect file locks over a network. </p>
</details>
<details>
<summary> How is my data protected? </summary>
<p>By default, notes are not encrypted and can be read directly from the database. Once a note is marked as encrypted, the note is encrypted using AES-128-CBC.</p>
</details>
<details>
<summary> Is there a mobile application? </summary>
<p>Currently there is no official mobile application. However, if you have a server instance you can access it using a web browser and even install it as a PWA. For Android, there is an unofficial application called TriliumDroid that even works offline (same as a desktop client).</p>
</details>
<details>
<summary> How well does the application scale with a large amount of notes? </summary>
<p>Depending on usage, the application should be able to handle at least 100.000 notes without an issue. Do note that the sync process can sometimes fail if uploading many large files (&gt; 1 GB per file) since Trilium is meant more as a knowledge base application rather than a file store (like NextCloud, for example).</p>
</details>
</div>
</section>
<footer>
<div class="content-wrapper">
<p>
© 2024-2025 <a href="https://github.com/eliandoran">Elian Doran</a> and the <a href="https://github.com/TriliumNext/Notes/graphs/contributors">team</a>.<br>
© 2017-2024 <a href="https://github.com/zadam">zadam</a>.
</p>
</div>
</footer>
<script src="./script.ts"></script>
</body>
</html>