---
title: "Page - Product Common Guides"
description: "Here, you will find a list of Smart Tags containing information about the page being browsed. {url} It returns the complete URL of the page, includi"
url: "https://www.tassos.gr/docs/common/features/smart-tags/page"
date: "2026-05-10T00:21:20+00:00"
language: "en-GB"
---

[ Home ](https://www.tassos.gr/index.php?option=com_content&view=category&layout=blog&id=24&Itemid=1088) / [ Product Common Guides ](https://www.tassos.gr/index.php?option=com_content&view=category&id=89) / [ Features ](https://www.tassos.gr/index.php?option=com_content&view=category&id=96) / [ Smart Tags ](https://www.tassos.gr/index.php?option=com_content&view=category&id=107)

#  Page

Here, you will find a list of Smart Tags containing information about the page being browsed.

### [{url}](#url)

It returns the complete URL of the page, including the query string.

**Example:**

 ```
https://www.site.com/blog/?category=123
```

### [{url.path}](#url-path)

It returns the page URL without the query string. Example:

**Example:**

 ```
https://www.site.com/blog/
```

### [{url.encoded}](#url-encoded)

It returns the complete URL of the page, including the query string, but encoded. For instance, if the current URL is https://www.site.com/blog/?category=123 the Smart Tag will return https%3A%2F%2Fwww.site.com%2Fblog%2F%3Fcategory%3D123. This is useful when you want to pass the URL as a parameter in another URL.

### [{page.title}](#page-title)

It returns the title of the page. If the page is behind a Menu Item, its Browser Page Title will be returned if not empty; otherwise, it falls back to the title as seen in the browser tab. Note that this Smart Tag may contain the site's name depending on whether or not the "Global Configuration &gt; Site &gt; SEO &gt; Site Name in Page Titles" option is turned on.

If you want to display the title of a Joomla Article, use the [{article.title}](#article-title) Smart Tag instead. Similarly, you can use the [{menu.item}](#menu-title) Smart Tag to fetch the Menu Item's title.

### [{page.desc}](#page-desc)

It returns the page’s meta description. If the page is a Joomla Article with a meta description set, it will be returned. Otherwise, it falls back to the menu item’s page meta description.

### [{page.lang}](#page-lang)

It returns the language code of the page. For example, if the page’s language is English or Greek, expect **en-gb** and **el-GR** as the returned value, respectively.

### [{page.langurl}](#page-langurl)

It returns the first part of the language code of the page. For example, if the page’s language is English or Greek, expect **en** and **el** as the returned value, respectively.

### [{page.generator}](#page-generator)

Returns the value of the generator meta tag.

### [{page.browsertitle}](#page-browsertitle)

Returns the menu item’s **Browser Page Title** option even if it is empty.

### [{querystring.KEY}](#querystring)

Returns the value of a URL query string parameter as found in the $\_GET superglobal array. For example, if the page URL is http://example.com/page.php?key1=red&amp;key2=blue, the {querystring.key2} Smart Tag will return **blue**.

### [{post.KEY}](#post)

Returns the value of a post data as found in the $\_POST superglobal array. For example, if you submit a form that consists of the “email” and “name” input fields, you can use **{post.email}** and **{post.name}** Smart Tags in the submitted URL to retrieve the value of any form input.

 Last updated on Jun 20th 2025 09:06

## Schema

```json
{
    "@context": "https://schema.org",
    "@type": "BreadcrumbList",
    "itemListElement": [
        {
            "@type": "ListItem",
            "position": 1,
            "name": "Home",
            "item": "https://www.tassos.gr"
        },
        {
            "@type": "ListItem",
            "position": 2,
            "name": "Home",
            "item": "https://www.tassos.gr/docs"
        },
        {
            "@type": "ListItem",
            "position": 3,
            "name": "Product Common Guides",
            "item": "https://www.tassos.gr/docs/common"
        },
        {
            "@type": "ListItem",
            "position": 4,
            "name": "Features",
            "item": "https://www.tassos.gr/docs/common/features"
        },
        {
            "@type": "ListItem",
            "position": 5,
            "name": "Smart Tags",
            "item": "https://www.tassos.gr/docs/common/features/smart-tags"
        },
        {
            "@type": "ListItem",
            "position": 6,
            "name": "Page",
            "item": "https://www.tassos.gr/docs/common/features/smart-tags/page"
        }
    ]
}
```

```json
{
    "@context": "https://schema.org",
    "@type": "Article",
    "mainEntityOfPage": {
        "@type": "WebPage",
        "@id": "https://www.tassos.gr/docs/common/features/smart-tags/page"
    },
    "headline": "Page",
    "image": {
        "@type": "ImageObject",
        "url": "https://www.tassos.gr/"
    },
    "publisher": {
        "@type": "Organization",
        "name": "Tassos",
        "logo": {
            "@type": "ImageObject",
            "url": "https://www.tassos.gr/https://www.tassos.gr/media/brand/logo-text.png"
        }
    },
    "author": {
        "@type": "Person",
        "name": "Tassos Marinos",
        "url": "https://www.tassos.gr/docs/common/features/smart-tags/page"
    },
    "datePublished": "2025-05-07T09:38:02+03:00",
    "dateCreated": "2025-05-07T09:38:02+03:00",
    "dateModified": "2025-06-20T09:00:45+03:00"
}
```
