Skip to content

Commit

Permalink
Fix slack link url (#193)
Browse files Browse the repository at this point in the history
* Fix slack link url

* Open in a new tab

* Point to full url in a blog post
  • Loading branch information
damianstasik authored Oct 16, 2023
1 parent 4d6b14e commit 7cf9893
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
4 changes: 2 additions & 2 deletions blog/2023-09-05-the-opentofu-fork-is-now-available.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ A key part of working in the open is making our roadmap open. So here's a quick
- **Wait on HashiCorp's response**. We reached out to HashiCorp publicly and privately and requested a response by August 25th.
- **Start working on the OpenTofu fork**. With no response from HashiCorp, we created the OpenTofu fork, and started working on it in private.
- **Apply to join the Linux Foundation**. We want OpenTofu to be part of an impartial, community-driven foundation, so we submitted all the paperwork to join the Linux Foundation.
- **Open up community Slack discussions**. We created the [OpenTofu Community Slack](/slack) to give the community a way to have discussions, provide feedback, ask questions, etc.
- **Open up community Slack discussions**. We created the [OpenTofu Community Slack](https://opentofu.org/slack) to give the community a way to have discussions, provide feedback, ask questions, etc.
- **Prepare the OpenTofu repo for collaboration**. Rename everything to OpenTofu; pick steering committee members; define [contribution guidelines](https://github.com/opentofu/opentofu/blob/main/CONTRIBUTING.md); get CI / CD and testing working; etc.
- **Release the OpenTofu repo**. As per this announcement, we are making the OpenTofu repo public at [github.com/opentofu/opentofu](https://github.com/opentofu/opentofu)!

Expand All @@ -51,7 +51,7 @@ The response from the community so far has been incredible. In just a few weeks,

This sort of growth is unprecedented, and we're humbled by all of your support. As per the roadmap in the previous section, we're working hard on getting OpenTofu to the point where we can start doing official releases.

In the meantime, you can follow our progress at [github.com/opentofu/opentofu](https://github.com/opentofu/opentofu), contribute to the project by following the [contribution guidelines](https://github.com/opentofu/opentofu/blob/main/CONTRIBUTING.md), and provide feedback in the [OpenTofu Community Slack](/slack). We are thrilled to be working with the whole community in making OpenTofu a truly open, community-driven project!
In the meantime, you can follow our progress at [github.com/opentofu/opentofu](https://github.com/opentofu/opentofu), contribute to the project by following the [contribution guidelines](https://github.com/opentofu/opentofu/blob/main/CONTRIBUTING.md), and provide feedback in the [OpenTofu Community Slack](https://opentofu.org/slack). We are thrilled to be working with the whole community in making OpenTofu a truly open, community-driven project!

### FAQ

Expand Down
1 change: 1 addition & 0 deletions src/components/Footer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ function LinkItem({ item }: LinkItemProps) {
to: toUrl,
})}
className="text-gray-900 dark:text-gray-50 hover:text-brand-700 dark:hover:text-brand-500"
target="_blank"
{...props}
>
{label}
Expand Down
9 changes: 7 additions & 2 deletions src/components/HowToSupport/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ export default function HowToSupport() {
<Link
href="https://github.com/opentofu/manifesto"
className="underline"
target="_blank"
>
manifesto repository
</Link>
Expand Down Expand Up @@ -199,11 +200,15 @@ export default function HowToSupport() {
}
>
6. Joining{" "}
<Link href="/slack" className="underline">
<Link href="/slack" className="underline" target="_blank">
our Slack community
</Link>{" "}
&amp;{" "}
<Link href="https://twitter.com/opentofuorg" className="underline">
<Link
href="https://twitter.com/opentofuorg"
className="underline"
target="_blank"
>
following us on Twitter.
</Link>
</Step>
Expand Down
1 change: 1 addition & 0 deletions src/components/SocialIconLink/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export default function SocialIconLink({
href={href}
className="flex items-center gap-3 text-gray-900 hover:text-brand-700 dark:text-gray-50 dark:hover:text-brand-500"
aria-label={label}
target="_blank"
>
<svg
viewBox="0 0 24 24"
Expand Down

0 comments on commit 7cf9893

Please sign in to comment.