Skip to content
This repository has been archived by the owner on Jul 1, 2024. It is now read-only.

Update pricing page #3049

Merged
merged 47 commits into from
Jun 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
9eb81a3
Add clarity around AWS classic vs native
mnlumi May 26, 2023
0c270fd
Adjust AWS classic reference
mnlumi May 30, 2023
a9a99a7
add redirects for get started guides (#2984)
susanev Jun 5, 2023
2d59f36
Update go.mod
susanev Jun 5, 2023
17f8f72
new code font! (#2976)
susanev Jun 5, 2023
d98e7c9
make keynote 40 minutes, shift all other times up by 20 minutes (#2985)
shughes26 Jun 5, 2023
806f5ba
create startup offer page (#2971)
shughes26 Jun 5, 2023
2ef5205
add new layoutz to registry (#2977)
susanev Jun 6, 2023
36abbec
Update go.mod
susanev Jun 6, 2023
b880ecc
update some registry links (#2974)
susanev Jun 6, 2023
a41ee13
Update go.mod
susanev Jun 6, 2023
79eeb27
fix resource h1 sizes (#2986)
susanev Jun 6, 2023
f5aec6d
Merge pull request #2939 from pulumi/mnlumi/aws-provider-clarity
mnlumi Jun 6, 2023
e2a0749
Update go.mod
mnlumi Jun 6, 2023
6b5f951
fix scheduling mistake (#2987)
shughes26 Jun 6, 2023
64a7631
Update go.mod
shughes26 Jun 6, 2023
ae0a8e0
fix (#2992)
susanev Jun 7, 2023
b3373a0
Update go.mod
susanev Jun 7, 2023
36d1d79
make blank whitepapers page fancy (#2993)
susanev Jun 7, 2023
a11f8c9
Add a sidebar link to open issues in pulumi-ai repository (#2991)
Jun 7, 2023
1478bd4
Add a note re Github Org member vis for PR preview (#2990)
MitchellGerdisch Jun 7, 2023
cf938ca
edit this page - links (#2995)
sean1588 Jun 7, 2023
f098c6c
Update go.mod
sean1588 Jun 7, 2023
ed034ec
fix text for line wrapping handler (#2999)
shughes26 Jun 7, 2023
1a2fb0b
Update go.mod
shughes26 Jun 7, 2023
ef67491
pass at updating inputs/outputs doc (#2996)
jaxxstorm Jun 7, 2023
847452c
Update lifting section (#3000)
jaxxstorm Jun 7, 2023
44df4c4
Revert "pass at updating inputs/outputs doc (#2996)" (#3002)
susanev Jun 7, 2023
1064aee
add redirect for /pugs (#3006)
sean1588 Jun 7, 2023
37a6ec6
call the get started thing a tutorial (#3005)
susanev Jun 7, 2023
408728b
change code styles to dark (#2846)
cnunciato Jun 7, 2023
5d0e42d
Update _index.md (#3008)
susanev Jun 8, 2023
ed018b7
Update go.mod
susanev Jun 8, 2023
8cafec8
fix up copy buttons (#3013)
susanev Jun 8, 2023
d9bf221
Update go.mod
susanev Jun 8, 2023
cfd1b31
remove url route from footer (#3017)
sean1588 Jun 8, 2023
dd6ee60
Update go.mod
sean1588 Jun 8, 2023
14f9abd
add zitadel logo (#3016)
anita-trimbur Jun 8, 2023
1f81bc4
block edit links on some pages (#3015)
sean1588 Jun 8, 2023
ad4f752
add meta imgs for docs (#3018)
susanev Jun 8, 2023
bb10cac
Update go.mod
susanev Jun 8, 2023
74243ba
Sarah/pulumiup workshops (#3007)
shughes26 Jun 9, 2023
ec5251b
Add blog meta image (#3020)
cnunciato Jun 9, 2023
7b3b40a
quickstart experience (#2983)
susanev Jun 9, 2023
0163cac
fix code blocks in notes (#3019)
susanev Jun 9, 2023
2faeba6
Update go.mod
susanev Jun 9, 2023
ff53b4c
add property search
gthuang Jun 12, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ This repository is a [Hugo module](https://gohugo.io/hugo-modules/) that doubles

Because of this, many of the links you follow when browsing around on the development server (to paths underneath `/docs/reference` for example) will fail to resolve because they originate from another repository — most likely https://github.com/pulumi/docs or https://github.com/pulumi/registry. When we build the Pulumi website, we merge this module along with any others into a single build artifact, but when you're working within an individual module like this one, you may find you're unable to reach certain pages or verify the links you may want to make to them.

If you want to link to a page that exists on https://pulumi.com but not in this repository, use the page's path **starting at the root** in a Markdown or HTML link. For example, in a Markdown file, to link to the [Digital Ocean Droplet](https://www.pulumi.com/docs/reference/pkg/digitalocean/droplet/) page (a page that doesn't exist in this repository, but that would exist in an integration build), you'd use:
If you want to link to a page that exists on https://pulumi.com but not in this repository, use the page's path **starting at the root** in a Markdown or HTML link. For example, in a Markdown file, to link to the [Digital Ocean Droplet](https://www.pulumi.com/registry/packages/digitalocean/api-docs/droplet/) page (a page that doesn't exist in this repository, but that would exist in an integration build), you'd use:

```markdown
[Digital Ocean Droplet](/docs/reference/pkg/digitalocean/droplet/)
[Digital Ocean Droplet](/registry/packages/digitalocean/api-docs/droplet/)
```

We used to recommend using `{{ relref }}` for these links, which are checked in the build for https://github.com/pulumi/docs; however, this often caused confusion because when a link was incorrect, the failure would not be obviously connected to a change here. For a detailed explanation see [#2701](https://github.com/pulumi/pulumi-hugo/pull/2071).
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ replace github.com/pulumi/pulumi-hugo/themes/default => ./themes/default

require (
github.com/pulumi/pulumi-hugo/themes/default v0.0.0-20220504042409-82f5a4588c0e // indirect
github.com/pulumi/registry/themes/default v0.0.0-20230605095533-d227fbf53a4b // indirect
github.com/pulumi/registry/themes/default v0.0.0-20230609164242-54cef1123aa5 // indirect
)
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
github.com/pulumi/pulumi-hugo/themes/default v0.0.0-20220504042409-82f5a4588c0e/go.mod h1:081/gGTOxNFBjrLQ3QvsyP34iiWgmmKDtoi5falfsuo=
github.com/pulumi/registry/themes/default v0.0.0-20230605095533-d227fbf53a4b h1:GV79n3EyvCY/6CS68Aeum/JVJknx8ZiVe7L38GC9NlI=
github.com/pulumi/registry/themes/default v0.0.0-20230605095533-d227fbf53a4b/go.mod h1:QSvobZqmJMqVmn3BTfSiYkbRKtJHhSA8gotu/pD1a0w=
github.com/pulumi/registry/themes/default v0.0.0-20230609164242-54cef1123aa5 h1:DFGNGb0pnA4vRVSlu5/xl+1Wg5gt8OIdetYv6VbF+/Y=
github.com/pulumi/registry/themes/default v0.0.0-20230609164242-54cef1123aa5/go.mod h1:QSvobZqmJMqVmn3BTfSiYkbRKtJHhSA8gotu/pD1a0w=
Loading