Skip to content

Commit

Permalink
Fix sitemap api
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-sumi-k committed Jan 24, 2024
1 parent e50cc5d commit 5fe6ca6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
10 changes: 6 additions & 4 deletions sitemap/sitemap_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,16 +90,18 @@ func expectedURLData() []URL {

sitemapUrls := []URL{
{Loc: baseUrl, Priority: `1`},
{Loc: baseUrl + "/services", Priority: `0.9`},
{Loc: baseUrl + "/portfolio", Priority: `0.9`},
{Loc: baseUrl + `/contributions`, Priority: `0.9`},
{Loc: baseUrl + "/resources", Priority: `0.9`},
{Loc: baseUrl + "/about", Priority: `0.9`},
{Loc: baseUrl + "/android-app-development", Priority: `0.9`},
{Loc: baseUrl + "/contact", Priority: `0.9`},
{Loc: baseUrl + `/contributions`, Priority: `0.9`},
{Loc: baseUrl + "/android-app-development", Priority: `0.9`},
{Loc: baseUrl + "/ios-app-development", Priority: `0.9`},
{Loc: baseUrl + `/mobile-app-development`, Priority: `0.9`},
{Loc: baseUrl + `/services`, Priority: `0.9`},
{Loc: baseUrl + `/thank-you`, Priority: `0.9`},
{Loc: baseUrl + "/portfolio", Priority: `0.9`},
{Loc: baseUrl + `/jobs/thank-you`, Priority: `0.9`},
{Loc: baseUrl + `/unsubscribe`, Priority: `0.9`},
{Loc: baseUrl + "/portfolio/luxeradio", Priority: `0.9`},
{Loc: baseUrl + "/portfolio/togness", Priority: `0.9`},
{Loc: baseUrl + "/portfolio/justly", Priority: `0.9`},
Expand Down
1 change: 1 addition & 0 deletions templates/path.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
test
services
portfolio
contributions
Expand Down

0 comments on commit 5fe6ca6

Please sign in to comment.