How to configure and display the site name, Logo, and filing information for Anqi CMS website?

The identity of a website often begins with its site name, Logo and filing information.In AnqiCMS, configuring and displaying these core information is the first step in building a website and it is also a crucial step.The entire process is intuitive and convenient, even if you are new to AnqiCMS, you can complete it easily.We will introduce how to complete these settings in AnqiCMS and display them on your website.


Step 1: Configure the website basic information in the background

First, you need to log in to the AnqiCMS admin interface. This is the center for managing all the content and settings of your website.

In the left menu bar, find and click“Background Settings”and then selectGlobal function settings. This area gathers the most core configuration options of the website, including the site name, Logo, and filing information we set up today.

  1. Website Name

    Here is the name of your website, which is usually displayed in the browser tab title, the header of the website, and as an important identifier for the brand in search engine results.Please enter the full name of your website, for example 'Anqi CMS Official Website' or 'Your Company Name'.A complete and distinctive name can help users quickly identify your website.

  2. Website LOGO

    Logo is the visual core of the website, representing your brand image.Beside the 'Website Logo' option, you will see an upload area.Click it, select the website logo image file you are ready to upload.AnqiCMS will automatically process and store this Logo, making it convenient for you to call it on various pages of the website.Suggest uploading a clear, appropriately sized Logo to ensure it displays well on different devices.

  3. Record number

    For websites in Mainland China, filing information is essential to prove the legal operation of the website.Here, you can enter your website filing number, for example, "Beijing ICP preparation No. XXXXXXXX-X".Please enter only the main part of the registration number, without including the suffixes like “-1” and so on.AnqiCMS template tags can automatically format it into a clickable link, pointing to the Ministry of Industry and Information Technology filing query page, in compliance with regulations.

  4. Copyright information

    The website footer usually displays a copyright statement, used to protect your intellectual property rights and inform visitors of relevant legal statements.You can enter your copyright text in the "Copyright Content" field, for example, "© 2023 Your Company Name. All Rights Reserved.".This information will be displayed in the footer of your website.

Moreover, the "Global Function Settings" also provides the "Custom Setting Parameters" feature.If you have other unique website information that needs to be managed, you can flexibly add it and call it in the template, which greatly enhances the extensibility of the system.After completing all the information, please make sure to click the "Save" button at the bottom of the page to ensure that your changes take effect.


Step two: Display the configuration information on the website front end.

After configuring this information in the background, the next step is to display them on the front-end page of the website.AnqiCMS uses a powerful and easy-to-use template engine, allowing you to easily display the data configured in the background on various parts of the website.

The essence lies in usingsystemTemplate tags, which are specifically used to obtain the global configuration information of the website.

  1. Display the site name

    To display the website name you set in the background, you can use the following tag at any location in the template:{% system with name="SiteName" %}.

    The site name usually appears together with the page title in the browser tab, which is also an important part of SEO optimization. For example, in your website template's<head>area, you can usetdkTags to dynamically generate page titles and choose whether to include the site name:

    <title>{% tdk with name="Title" siteName=true %}</title>
    

    HeresiteName=trueIt will instruct AnqiCMS to automatically append the site name you have configured to the end of the current page title (default is separated by “-”), making the page title more recognizable and branding.

  2. Show website logo

    The website logo is usually displayed in prominent positions such as the header navigation bar. You just need to<img>label'ssrcuse in the propertiessystemtag to get the logo image address:

    <img src="{% system with name="SiteLogo" %}" alt="{% system with name="SiteName" %}" />
    

    Here we also recommend that you inaltThe attribute refers to the site name, which not only improves the SEO friendliness of the website, but also provides useful text hints when the image fails to load.

  3. Display the record number

    The record number is usually displayed in the footer of the website. AnqiCMS provides a convenient way to display it as a compliant link:

    `html

    {% system with name=“SiteIcp” %}&copy