From 0848d79f63967db27bbe1aaa404fa52c373c9fe7 Mon Sep 17 00:00:00 2001 From: Kumi Date: Sat, 22 Jun 2024 20:42:34 +0200 Subject: [PATCH] feat(homepage): enhance homepage content and structure Revamped homepage content with improved welcome message, clear description of FreeDOI functionalities, and structured instructions for new users. Added sections for "What is FreeDOI?," "How Does It Work?," "Get Started," and "Contact Us." Enhanced user navigation and clarified the non-affiliation with the official DOI system. --- freedoi/resolver/templates/resolver/home.html | 92 ++++++++++++++++--- 1 file changed, 81 insertions(+), 11 deletions(-) diff --git a/freedoi/resolver/templates/resolver/home.html b/freedoi/resolver/templates/resolver/home.html index 8ca6c2a..4b76b3a 100644 --- a/freedoi/resolver/templates/resolver/home.html +++ b/freedoi/resolver/templates/resolver/home.html @@ -1,21 +1,91 @@ -{% extends "base_generic.html" %} {% block title %}Home{% endblock %} -{% block content %} -
+{% extends "base_generic.html" %} +{% block title %}Welcome to FreeDOI{% endblock%} {% block content %} +

Welcome to FreeDOI

-

This is a simple system for managing and resolving DOIs.

+

+ FreeDOI is a system for managing and resolving Digital Object Identifiers + (DOIs) for various fields such as open source software, literature, personal + use, and more. Our system is designed to be flexible, user-friendly, and + free to use. +


- Use the navigation links above to manage prefixes, suffixes, and - identifiers. + Our goal is to provide a free, flexible system for assigning and resolving + identifiers for digital content, similar to the official DOI system.

+ +
+ +
+

What is FreeDOI?

+

+ FreeDOI is an alternative DOI system that allows users to create and manage + DOIs for various types of digital content. Our system uses a range of + prefixes (20. to 29.) to categorize different fields, such as: +

+
    +
  • 20. Science / Research
  • +
  • 21. Software
  • +
  • 22. Entertainment
  • +
+

+ FreeDOI also supports resolving official DOI prefixes (10.) to access + content from the official DOI system. +

+ +

How Does It Work?

+

+ FreeDOI provides a simple and intuitive interface for creating and managing + DOIs. Here's how you can get started: +

+
    +
  1. + Register: Create an account to start managing DOIs. +
  2. +
  3. + Create Suffixes: Define suffixes for your organization or + project. +
  4. +
  5. + Assign DOIs: Create and manage DOIs for your digital + content. +
  6. +
  7. + Resolve DOIs: Use our resolver to access the content + associated with any DOI. +
  8. +
+ +

Get Started

{% if user.is_authenticated %} - Manage Suffixes +

+ Welcome back, {{ user.first_name }}! Use the navigation links above to + manage your suffixes, and identifiers. +

+ Manage Suffixes {% else %} - Login + Ready to get started? Create an account or log in to begin managing your + DOIs. +

+ Login + Email Login {% endif %}
+ +
+

Contact Us

+

+ If you have any questions or need assistance, feel free to reach out to our + support team at + support@freedoi.org. +

+
{% endblock %}