Skip to content
This repository was archived by the owner on Sep 11, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion blogposts/announcing_sourcegraph_2.13.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ We're also shipping Sourcegraph extensions that add other new features:
- New search keywords for finding places where a package/module is used:
- [go.imports:PACKAGE](https://sourcegraph.com/extensions/sourcegraph/go-imports-search)
- [js.depends:MODULE](https://sourcegraph.com/extensions/sourcegraph/js-dependency-search)
- [py.imports:PACKAGE](https://sourcegraph.com/extensions/sourcegraph/python-imports-search)
- [py.imports:PACKAGE](https://sourcegraph.com/extensions/sourcegraph/python-imports-search)
- [java.imports:DOTTED_CLASS](https://sourcegraph.com/extensions/sourcegraph/java-imports-search)
- [php.uses:ALIAS](https://sourcegraph.com/extensions/sourcegraph/php-alias-search)
- New [org:GITHUB_ORG search keyword](https://sourcegraph.com/extensions/sourcegraph/org-search) to search among a GitHub organization's repositories
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ tags: [
slug: thorn-sunsets-legacy-applications-with-sourcegraph
heroImage: /case-studies/thorn-sourcegraph-case-study.png
published: true
description: "Thorn builds technology to defend children from sexual abuse, helping law enforcement reduce investigation times by 60%, ensuring that more children are found, faster. Sourcegraph is helping Thorn with their mission, by making it safer to deprecate legacy applications—searching all repositories in any branch to find code still relying on legacy architecture."
---

<p style="text-align: center">
Expand Down
4 changes: 3 additions & 1 deletion website/src/components/BlogPosts.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ export default class BlogPosts extends React.Component<any, any> {
</div>
<div className="blog__posts--post-excerpt">
<p>
{post.node.excerpt}{' '}
{post.node.frontmatter.description
? post.node.frontmatter.description
: post.node.excerpt}{' '}
<span className="blog__posts--post-readmore">Read more</span>
</p>
</div>
Expand Down
1 change: 1 addition & 0 deletions website/src/pages/blog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ export const pageQuery = graphql`
publishDate(formatString: "MMMM D, YYYY")
slug
published
description
}
html
excerpt(pruneLength: 300)
Expand Down
1 change: 1 addition & 0 deletions website/src/pages/go.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ export const pageQuery = graphql`
tags
publishDate(formatString: "MMMM D, YYYY")
slug
description
published
}
html
Expand Down
1 change: 1 addition & 0 deletions website/src/pages/graphql.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ export const pageQuery = graphql`
tags
publishDate(formatString: "MMMM D, YYYY")
slug
description
}
html
excerpt(pruneLength: 300)
Expand Down