mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
feat(web): ✨ add TPL page to live site
This commit is contained in:
parent
5f363d795e
commit
806c241bcc
3 changed files with 10 additions and 7 deletions
7
.github/README.md
vendored
7
.github/README.md
vendored
|
|
@ -21,13 +21,6 @@
|
|||
<a href="https://hub.docker.com/r/collinbarrett2/filterlists.api"><img src="https://img.shields.io/docker/pulls/collinbarrett2/filterlists.api.svg" alt="Docker Pulls" /></a>
|
||||
<br/>An ASP.NET Core API CRUD-ing with a MariaDB instance via EF Core.</p>
|
||||
|
||||
<p align="center"><b>Agent:</b>
|
||||
<a href="https://dev.azure.com/collinbarrett/FilterLists/_build/latest?definitionId=20"><img src="https://img.shields.io/azure-devops/build/collinbarrett/FilterLists/20.svg" alt="Azure DevOps builds" /></a>
|
||||
<a href="https://dev.azure.com/collinbarrett/FilterLists/_test/analytics?definitionId=20&contextType=build"><img alt="Azure DevOps tests" src="https://img.shields.io/azure-devops/tests/collinbarrett/FilterLists/20.svg"></a>
|
||||
<a href="https://dev.azure.com/collinbarrett/FilterLists/_release?definitionId=6"><img src="https://img.shields.io/azure-devops/release/collinbarrett/b06a3d5c-459e-4789-9735-0f5969006fe8/6/7.svg" alt="Azure DevOps releases" /></a>
|
||||
<a href="https://hub.docker.com/r/collinbarrett2/filterlists.agent"><img src="https://img.shields.io/docker/pulls/collinbarrett2/filterlists.agent.svg" alt="Docker Pulls" /></a>
|
||||
<br/>A .NET Core console application performing crawling, archiving, and URL validation.</p>
|
||||
|
||||
# Background
|
||||
|
||||
FilterLists helps to protect your privacy and security when using the internet. It provides a comprehensive directory of subscription lists to block advertisements, malware, trackers, and other general annoyances. First, install one of the [software tools](https://github.com/collinbarrett/FilterLists/blob/master/data/Software.json) that supports these lists. Then, you can subscribe to a set of these lists inside of that software. If you need help or have a comment/question, open an [Issue](https://github.com/collinbarrett/FilterLists/issues).
|
||||
|
|
|
|||
|
|
@ -55,6 +55,7 @@ export const App: React.FC = () => (
|
|||
<Community />
|
||||
<GitHub />
|
||||
<Api />
|
||||
<Tpl />
|
||||
<Donate />
|
||||
</Footer>
|
||||
</Layout>
|
||||
|
|
@ -144,6 +145,15 @@ const Api = () => (
|
|||
</Tag>
|
||||
);
|
||||
|
||||
const Tpl = () => (
|
||||
<Tag>
|
||||
<a
|
||||
href="/tpl.html"
|
||||
title="FilterLists Tracking Protection Lists (TPL) for Internet Explorer"
|
||||
></a>
|
||||
</Tag>
|
||||
);
|
||||
|
||||
const Donate = () => (
|
||||
<Tag>
|
||||
<a
|
||||
|
|
|
|||
Loading…
Reference in a new issue