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

Calendar 👁️ 72

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

Related articles

How to display the friend link list in Anqi CMS and distinguish the rel="nofollow" attribute?

Friendship links play an important role in website operation, they not only help to increase the number of external links on the website, but also have a positive impact on search engine optimization (SEO), and can also provide users with more related resource entries.However, not all friendship links are suitable for passing weight or obtaining search engines' 'recommendations', at this point the `rel="nofollow"` attribute is particularly important.AnQiCMS (AnQiCMS) is a powerful content management system that fully considers the needs of website operators and provides a convenient link management function

2025-11-09

How to use Anqi CMS tags and filters to format date and timestamp display?

The timeliness and readability of website content largely depend on the accuracy and aesthetics of date and time information.AnQi CMS as an efficient content management system provides flexible tags and filters, helping us easily implement personalized display of dates and timestamps, making your website content more in line with user habits and enhancing the overall reading experience.This article will deeply explore how to巧妙运用these functions in Anqi CMS, converting raw time data into a clear and understandable display form.### Understand the Date and Time Data in Anqi CMS In Anqi CMS

2025-11-09

How to display related recommended documents on the document detail page of AnQi CMS and customize the recommendation logic?

After visitors have read an interesting document or viewed a product introduction on your website, if they can get more relevant recommendations in a timely manner, it will undoubtedly greatly enhance their visit experience, extend their stay time, and encourage them to explore more corners of the website.AnQi CMS knows this and provides flexible and diverse features to help you cleverly display related recommendations on the document detail page, and can customize the recommendation logic according to your operational strategy. We will delve into how to implement this feature in Anqi CMS in detail.###

2025-11-09

How to display the links and titles of the previous and next documents in AnQi CMS?

How to easily display the link and title of the previous and next document in AnQi CMS?When browsing website articles, we often hope to smoothly jump from the current content to the previous or next related article. This seamless reading experience not only enhances user satisfaction but also has a positive effect on the overall structure of the website's content and SEO optimization.AnQi CMS is well-versed in this, providing content operators with an extremely convenient way to deploy such navigation functions with its flexible and powerful template engine.

2025-11-09

How to safely render HTML content generated by a rich text editor in the Anqi CMS template?

When building a website, a rich text editor (Rich Text Editor, abbreviated as RTE) is undoubtedly a powerful tool for content creation. It allows operators to edit content in a visual way, easily adding formats, images, links, and even tables, greatly enhancing the richness of content presentation.However, when this HTML content generated by RTE needs to be displayed in the front-end template of the website, how to ensure its safe rendering while retaining the expected style and structure is a problem that requires careful consideration.

2025-11-09

How to implement lazy loading of images and automatically convert them to WebP format to optimize display performance in AnQi CMS?

## Speed up website image loading: The secret of AnQiCMS image lazy loading and automatic WebP conversion In today's increasingly rich digital content, the quality and loading speed of website images directly affect user experience, search engine rankings, and the overall conversion rate of the website.Imagine if the images on a website load slowly, visitors are likely to leave before the content is fully displayed.The good news is that AnQiCMS has provided us with a set of efficient solutions, through the two functions of image lazy loading and automatic WebP conversion, so that the visual content of the website can be guaranteed in terms of quality at the same time

2025-11-09

How to display user submitted content in the comment list or message board of Anqi CMS?

In website operation, user-generated content (UGC) is an important aspect for enhancing interaction and activity, whether it is the comments below the articles or the overall message board of the website, it can effectively promote user communication and feedback collection.AnQiCMS was designed with a strong emphasis on user interaction from the beginning and provides powerful and flexible features for managing and displaying the content submitted by users. In order to display user-submitted comments or messages on Anqi CMS, the key is to understand its template mechanism and the corresponding built-in tags.

2025-11-09

How to customize the display logic and content sorting of the search result page of Anqi CMS?

Optimizing the website's search results page, making it not only present information accurately but also sort intelligently according to user preferences, is a key link to improving user experience and website efficiency.AnQi CMS provides a powerful and flexible template engine and a rich tag library, making it intuitive and efficient to customize the display logic and content sorting of search result pages.In Anqi CMS, the search results page is usually controlled by a specific template file, which is located by default in the directory of the current template theme under `search/index.html` (or in flat mode under `search`)

2025-11-09