Skip to content

Commit

Permalink
Merge pull request #3148 from zirni/fix-guides-links
Browse files Browse the repository at this point in the history
Fix Alchemy Guides links
  • Loading branch information
tvdeyen authored Jan 8, 2025
2 parents 9f52a14 + 68f5b1d commit 219819c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion app/views/alchemy/welcome.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
</p>
<ul>
<li><%= link_to 'Create your first admin user', Alchemy.signup_path %></li>
<li><%= link_to 'Read the guidelines', 'http://guides.alchemy-cms.com/stable', target: '_blank' %></li>
<li><%= link_to 'Read the guidelines', 'https://guides.alchemy-cms.com/', target: '_blank', rel: 'noopener' %></li>
</ul>
</div>
</body>
Expand Down
8 changes: 4 additions & 4 deletions lib/generators/alchemy/install/files/alchemy.en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ en:
article_headline: "Welcome to your first Alchemy CMS page"
article_text: |
<h2>How to get started.</h2>
<p>First of all you should read about Alchemy and it's architecture <a class="external" href="http://guides.alchemy-cms.com/alchemy_approach.html" target="_blank" data-link-target="blank">in the guidelines</a>.</p>
<p>First of all you should read about Alchemy and it's architecture <a class="external" href="https://guides.alchemy-cms.com/alchemy_approach.html" target="_blank" rel="noopener" data-link-target="blank">in the guidelines</a>.</p>
<p>The most important things to know about Alchemy are elements and page layouts.</p>
<h3>Elements:</h3>
<p>With Alchemy you can split pages into content parts, elements. These elements can be defined out of several base content types: ingredients. The ingredients are:</p>
Expand All @@ -32,11 +32,11 @@ en:
<li>Boolean - <em>A checkbox</em></li>
</ul>
<p>Elements get defined in <code>config/alchemy/elements.yml</code>.</p>
<p>Read more about elements and how to define them <a class="external" href="http://guides.alchemy-cms.com/elements.html" target="_blank" data-link-target="blank">in the guidelines</a>.</p>
<p>Read more about elements and how to define them <a class="external" href="https://guides.alchemy-cms.com/elements.html" target="_blank" rel="noopener" data-link-target="blank">in the guidelines</a>.</p>
<h3>Page types:</h3>
<p>You can define several types of pages, called page layouts. You can assign elements to page layouts and control how elements and the page of a certain layout behave.</p>
<p>Page layouts get defined in <code>config/alchemy/page_layouts.yml</code>.</p>
<p>Read more about defining page layouts <a class="external" href="http://guides.alchemy-cms.com/page_layouts.html" target="_blank" data-link-target="blank">in the guidelines</a>.</p>
<p>Read more about defining page layouts <a class="external" href="https://guides.alchemy-cms.com/page_layouts.html" target="_blank" rel="noopener" data-link-target="blank">in the guidelines</a>.</p>
# Hint texts for elements
element_hints:
Expand All @@ -46,4 +46,4 @@ en:
ingredient_hints:
headline: "This is a single line of unformatable Text"
picture: "Pictures are stored in the library. You can assign a picture multiple times throughout your site. Alchemy has an image cropper build right in."
text: "This is a rich text block powered by TinyMCE editor. You can change the configuration of the editor. See http://guides.alchemy-cms.com/customize_tinymce.html"
text: "This is a rich text block powered by TinyMCE editor. You can change the configuration of the editor. See https://guides.alchemy-cms.com/customize_tinymce.html"
2 changes: 1 addition & 1 deletion lib/generators/alchemy/install/templates/menus.yml.tt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# == In this configuration, you set up Alchemy's menu names.
#
# For further information please see http://guides.alchemy-cms.com/stable/menus.html
# For further information please see https://guides.alchemy-cms.com/

<%- unless @options[:skip_demo_files] -%>
- main_menu
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# == This file defines the page layouts for new pages.
#
# For further information please see http://guides.alchemy-cms.com/stable/page_layouts.html
# For further information please see https://guides.alchemy-cms.com/pages.html

<%- unless @options[:skip_demo_files] -%>
- name: <%= Alchemy::Config.get(:default_language)['page_layout'] %>
Expand Down

0 comments on commit 219819c

Please sign in to comment.