Skip to content

Commit

Permalink
adjust title
Browse files Browse the repository at this point in the history
  • Loading branch information
omohokcoj committed Dec 9, 2024
1 parent d62d83e commit 46edc7d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/views/layouts/_head_tags.html.erb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<title>
<%= content_for(:html_title) || 'DocuSeal | Open Source Document Signing' %>
<%= content_for(:html_title) || (signed_in? ? 'DocuSeal' : 'DocuSeal | Open Source Document Signing') %>
</title>
<%= render 'shared/meta' %>
2 changes: 1 addition & 1 deletion app/views/shared/_meta.html.erb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<% if Docuseal.demo? || (request.path != '/' && !devise_controller?) %>
<meta name="robots" content="noindex">
<% end %>
<% title = content_for(:html_title) || 'DocuSeal | Open Source Document Filling and Signing' %>
<% title = content_for(:html_title) || (signed_in? ? 'DocuSeal' : 'DocuSeal | Open Source Document Signing') %>
<% description = content_for(:html_description) || 'Open source, self-hosted tool to streamline document filling and signing. Create custom PDF forms to complete and sign with an easy to use online tool.' %>
<meta name="description" content="<%= description %>">
<meta property="og:title" content="<%= title %>">
Expand Down

0 comments on commit 46edc7d

Please sign in to comment.