惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

C
CXSECURITY Database RSS Feed - CXSecurity.com
Stack Overflow Blog
Stack Overflow Blog
月光博客
月光博客
T
Threat Research - Cisco Blogs
小众软件
小众软件
有赞技术团队
有赞技术团队
酷 壳 – CoolShell
酷 壳 – CoolShell
Apple Machine Learning Research
Apple Machine Learning Research
C
Cyber Attacks, Cyber Crime and Cyber Security
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
T
Tailwind CSS Blog
Cisco Talos Blog
Cisco Talos Blog
V
V2EX
博客园 - 【当耐特】
C
Cybersecurity and Infrastructure Security Agency CISA
Hugging Face - Blog
Hugging Face - Blog
The Cloudflare Blog
The Last Watchdog
The Last Watchdog
Simon Willison's Weblog
Simon Willison's Weblog
T
Threatpost
S
Secure Thoughts
O
OpenAI News
P
Proofpoint News Feed
S
SegmentFault 最新的问题
Forbes - Security
Forbes - Security
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Application and Cybersecurity Blog
Application and Cybersecurity Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Last Week in AI
Last Week in AI
宝玉的分享
宝玉的分享
Scott Helme
Scott Helme
T
Tenable Blog
A
Arctic Wolf
L
LINUX DO - 热门话题
爱范儿
爱范儿
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
www.infosecurity-magazine.com
www.infosecurity-magazine.com
V
Visual Studio Blog
Hacker News: Ask HN
Hacker News: Ask HN
Hacker News - Newest:
Hacker News - Newest: "LLM"
腾讯CDC
博客园 - Franky
WordPress大学
WordPress大学
Know Your Adversary
Know Your Adversary
博客园_首页
雷峰网
雷峰网
IT之家
IT之家
PCI Perspectives
PCI Perspectives
L
LINUX DO - 最新话题
H
Heimdal Security Blog

Bear docs

Private blogs Favicons and logos Multi-language blog Comments Roadmap Not seeing your post? Code of Conduct RSS Subscriber analytics Upgrading from subscription to lifetime
Neat Bear features
hidden (docs · 2023-11-17 · via Bear docs

Bear docs

Listed below are a few neat features of Bear that you probably don't know about.

Dashboard styling

You can now modify the way your dashboard looks in Customise dashboard in your account section of your dashboard.

For example, adding the following CSS:

body {
    max-width: 1024px;
}

button {
    padding: 10px 15px;
    background-color: #eceff4;
    border-radius: 10px;
    border: 0;
}

will make your dashboard look like this: Bear dash


Embedded post lists

You can now add filtered post lists to any content on your blog. This is covered in detail here.

**Last 3 posts**
{{ posts|limit:3 }}

Last 3 posts


Mathematical notation

You can now write mathematical notation in LaTeX in any content field. This is covered in more detail here.

**Energy conversion in the Sun** $$4 \, \text{H} \rightarrow \text{He} + 2 \, \text{e}^+ + 2 \, \nu_e + \gamma$$

Energy conversion in the Sun 4H→He+2e++2νe+γ


Edit robots.txt

You can now edit your robots.txt file in Settings > Advanced settings. For example, you can block ChatGPT from accessing your blog by adding:

User-agent: GPTBot
Disallow: /

Insert blog and post attributes

The following attributes can be inserted in any blog or post content:

{{ blog_title }}
{{ blog_description }} 
{{ blog_link }}
{{ blog_created_date }}
{{ blog_last_modified }} ago
{{ blog_last_posted }} ago

{{ post_title }}
{{ post_description }}
{{ post_link }}
{{ post_published_date }}
{{ post_last_modified }} ago

Eg:

This post **({{ post_title }})** was last edited **{{ post_last_modified }} ago**.

This post (Neat Bear features) was last edited 2 months, 3 weeks ago.


Insert tag cloud

The following can be inserted into any content to render a full tag list along with filter links:

Insert Next/Previous post links

The following can be inserted into any content to render a link to the next or previous post in the blog list:

{{ previous_post }}
{{ next_post }}

Eg: Previous | Next

Random blogs and posts

Add links to random blog or post on Bear by using https://bearblog.dev/discover/random-blog/ and https://bearblog.dev/discover/random-post/:

[Random blog](tab:https://bearblog.dev/discover/random-blog/)  
[Random post](tab:https://bearblog.dev/discover/random-post/)

Existing tag list

To make looking up tags that have already been used on the blog easier, in the ► Attributes above the post text area the tags example will be populated with tags that have been previously used on your blog.