> For the complete documentation index, see [llms.txt](https://thefinebits.gitbook.io/finebits/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://thefinebits.gitbook.io/finebits/custom-pages/portfolio.md).

# Portfolio

<figure><img src="/files/TV944m5fRKkQ3nbyCf0e" alt=""><figcaption></figcaption></figure>

If you are a creator and have a portfolio, you can benefit from the custom [Portfolio](https://demo.thefinebits.com/portfolio/) template provided by FineBits. This unique template utilizes the current Tags system, but with some adjustments, it highlights the projects you wish to showcase.

To set up the custom portfolio template, follow these steps:

1. From the Ghost Admin, navigate to **Tags** and create a new tag called "portfolio".
2. Optionally, include a description and a tag image to showcase at the top of your portfolio.
3. After clicking `Save` to create the portfolio tag, go to **Settings → Labs** and select the `Download current routes` link.
4. After downloading the `routes.yaml` file, open it in your preferred text editor. The default contents will resemble the following:

```yaml
routes:

collections:
  /:
    permalink: /{slug}/
    template: index

taxonomies:
  tag: /tag/{slug}/
  author: /author/{slug}/
```

5. To prevent the portfolio entries from displaying on your homepage, update the `route.yaml` file as shown below:

```yaml
routes:

collections:
  /:
    permalink: /{slug}/
    template: index
    filter: tag:-portfolio
  /portfolio/:
    permalink: /portfolio/{slug}/
    filter: primary_tag:portfolio
    template: portfolio
    data: tag.portfolio

taxonomies:
  tag: /tag/{slug}/
  author: /author/{slug}/
```

<figure><img src="/files/IbFTW9FZYO0Sz6RI4rfh" alt=""><figcaption></figcaption></figure>

6. Save your changes, then navigate to the Ghost admin and choose `Upload routes file` to upload the recently edited file.
7. You can now publish your portfolio entries just like regular posts. By tagging them with `portfolio`, they will exclusively show up on your portfolio page (e.g. <https://www.yoursite.com/portfolio/>).


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://thefinebits.gitbook.io/finebits/custom-pages/portfolio.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
