Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: improve the iOS blog post #284

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
Binary file added public/apple_team_id.webp
Binary file not shown.
Binary file added public/github_new_secret.webp
Binary file not shown.
Binary file added public/ios_sign_tutorial_download.webp
Binary file not shown.
Binary file added public/ios_sign_tutorial_keytype.webp
Binary file not shown.
Binary file added public/ios_sign_tutorial_plus.webp
Binary file not shown.
Binary file added public/ios_sign_tutorial_upload.webp
Binary file not shown.
Binary file added public/terminal_ios_key_sign.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/terminal_ios_key_sign_v2.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/xcode_app_click.webp
Binary file not shown.
Binary file added public/xcode_bundle_id.webp
Binary file not shown.
308 changes: 212 additions & 96 deletions src/content/blog/en/automatic-capacitor-ios-build-github-action.md

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions src/vue-pages/blog/[slug].vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ const props = defineProps<{
description?: string
head_image_alt?: string
author_image_url?: string
coauthored_by?: string
coauthor_image_url?: string
coauthor_url?: string
}>()

const isFixedTocVisible = ref(false)
Expand Down Expand Up @@ -139,6 +142,18 @@ onMounted(() => window.addEventListener('scroll', handleScroll))
{{ props?.author }}
</a>
</div>
<template v-if="props?.coauthored_by">
<div class="flex flex-row items-center px-4 mx-auto mt-5 lg:max-w-1/2">
<div class="min-w-max min-h-[1px]">Co-authored By</div>
<div class="ml-3 h-[1px] w-full bg-white/30" />
</div>
<div class="flex items-center px-4 mx-auto mt-5 lg:max-w-1/2">
<img :src="props?.coauthor_image_url" class="object-cover rounded-full size-8" :alt="`author image ${props?.coauthored_by}`" :title="`author image ${props?.coauthored_by}`" />
<a :href="props?.coauthor_url" class="ml-3 text-lg font-medium" target="_blank" rel="noopener noreferrer">
{{ props?.coauthored_by }}
</a>
</div>
</template>
</div>
<section class="py-12 sm:py-16 lg:py-20 xl:py-24">
<div class="px-4 mx-auto max-w-7xl sm:px-6 lg:px-8">
Expand Down
Loading